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-04-26 11:10:37 +0400
committerMarek Safar <marek.safar@gmail.com>2005-04-26 11:10:37 +0400
commit6cf1f76689da4cab08327efac981fb85f6ad63db (patch)
tree59d298b7487b6a2368de571c5cb29458c24dcd80 /mcs/errors/cs3007.cs
parent61272c4c8d4e56caf1a1eb7e90b0e88ba6e87923 (diff)
new tests + update
svn path=/trunk/mcs/; revision=43580
Diffstat (limited to 'mcs/errors/cs3007.cs')
-rw-r--r--mcs/errors/cs3007.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/mcs/errors/cs3007.cs b/mcs/errors/cs3007.cs
new file mode 100644
index 00000000000..2ed6c3b99c0
--- /dev/null
+++ b/mcs/errors/cs3007.cs
@@ -0,0 +1,13 @@
+// cs3007.cs: Overloaded method 'CLSClass.(bool[])' differing only by unnamed array types is not CLS-compliant
+// Line: 11
+
+using System;
+[assembly: CLSCompliant(true)]
+
+public class CLSClass {
+ public CLSClass(int[,,][] i) {
+ }
+
+ public CLSClass(bool[] b) {
+ }
+}