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>2005-02-21 15:25:26 +0300
committerMarek Safar <marek.safar@gmail.com>2005-02-21 15:25:26 +0300
commit1b7c9e0b868deeb532bb80b2b5169bb70396e09d (patch)
tree786b70b2b72d3a9d0e61d07e215b31c54d5ecf0b /mcs/errors/cs1501-8.cs
parent3a8c849feb4c261b565535c9d0ceb0539115358c (diff)
parenta162451db4cfd4d9f7394062b5e0918199b076b0 (diff)
wrong error code
svn path=/trunk/mcs/; revision=40981
Diffstat (limited to 'mcs/errors/cs1501-8.cs')
-rw-r--r--mcs/errors/cs1501-8.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/mcs/errors/cs1501-8.cs b/mcs/errors/cs1501-8.cs
new file mode 100644
index 00000000000..2a448522c42
--- /dev/null
+++ b/mcs/errors/cs1501-8.cs
@@ -0,0 +1,16 @@
+// cs0143: Can't find the constructor for a determinated class.
+// Line: 11
+
+namespace cs0143Test
+{
+ public class A
+ {
+ static void Main ()
+ {
+ string b="text";
+ int c=2;
+
+ A a = new A (b, c);
+ }
+ }
+}