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>2004-09-03 20:22:19 +0400
committerMarek Safar <marek.safar@gmail.com>2004-09-03 20:22:19 +0400
commitf11772adb6596f40438d4deec8494edcb17a4cc0 (patch)
tree0b70eb7460b747538b972224920cac5b9863bd63 /mcs/errors/cs3005-23.cs
parent2ccb3ff17823569f4cd1e009adfd5ca4647c7548 (diff)
2004-09-03 Marek Safar <marek.safar@seznam.cz>
* 8 new error tests. svn path=/trunk/mcs/; revision=33290
Diffstat (limited to 'mcs/errors/cs3005-23.cs')
-rw-r--r--mcs/errors/cs3005-23.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/mcs/errors/cs3005-23.cs b/mcs/errors/cs3005-23.cs
new file mode 100644
index 00000000000..4911f67df55
--- /dev/null
+++ b/mcs/errors/cs3005-23.cs
@@ -0,0 +1,9 @@
+// cs3005.cs: Identifier 'CLSClass.a.get' differing only in case is not CLS-compliant
+// Line: 8
+
+[assembly:System.CLSCompliant(true)]
+
+public class CLSClass {
+ public int get_A () { return 3; }
+ public int a { get { return 2; } }
+}