Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2009-06-24 20:37:18 +0400
committerMarek Safar <marek.safar@gmail.com>2009-06-24 20:37:18 +0400
commit9e060eba2167b1c0b7c08fb5e557c9f55eb20351 (patch)
treefba347f5a27ad90a0034a75f71757e8e09af03d8 /mcs/errors
parent1a123c4ec53a23b40fa7da259787c4626bd11a2b (diff)
New test.
svn path=/trunk/mcs/; revision=136778
Diffstat (limited to 'mcs/errors')
-rw-r--r--mcs/errors/cs1503-10.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/mcs/errors/cs1503-10.cs b/mcs/errors/cs1503-10.cs
new file mode 100644
index 00000000000..7d2afbecb7f
--- /dev/null
+++ b/mcs/errors/cs1503-10.cs
@@ -0,0 +1,17 @@
+// CS1503: Argument `#1' cannot convert `System.RuntimeArgumentHandle' expression to type `__arglist'
+// Line: 10
+
+using System;
+
+class C
+{
+ void Foo (__arglist)
+ {
+ InstanceArgList (__arglist);
+ }
+
+ int InstanceArgList (__arglist)
+ {
+ return 54;
+ }
+}