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:
authorMiguel de Icaza <miguel@gnome.org>2002-04-26 23:33:03 +0400
committerMiguel de Icaza <miguel@gnome.org>2002-04-26 23:33:03 +0400
commit7fe683fc465a3865ddcd4393e07dd36a1997dcde (patch)
treea4ef5ecaab9b13b7b3ae34961e8484855a613889 /mcs/errors/cs1501-2.cs
parent5b47db11064ec9a04b3c3d2d15085594f87b9425 (diff)
Add more test cases
svn path=/trunk/mcs/; revision=4069
Diffstat (limited to 'mcs/errors/cs1501-2.cs')
-rwxr-xr-xmcs/errors/cs1501-2.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/mcs/errors/cs1501-2.cs b/mcs/errors/cs1501-2.cs
new file mode 100755
index 00000000000..18d3b1a381d
--- /dev/null
+++ b/mcs/errors/cs1501-2.cs
@@ -0,0 +1,14 @@
+// cs1501: no match for this argument list
+// Line: 11
+class X {
+
+ X (int a)
+ {
+ }
+
+ static void Main ()
+ {
+ new X ();
+ }
+}
+