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>2001-06-08 22:45:34 +0400
committerMiguel de Icaza <miguel@gnome.org>2001-06-08 22:45:34 +0400
commit773a66abc5e63cc1d2f111daeaa2848891dc8f61 (patch)
tree94b8548e3b0efd4c276a7cc66d783c1cbf0b5038 /mcs/errors/cs0110.cs
Initial revisionINITIAL_IMPORT
svn path=/trunk/mcs/; revision=2
Diffstat (limited to 'mcs/errors/cs0110.cs')
-rwxr-xr-xmcs/errors/cs0110.cs29
1 files changed, 29 insertions, 0 deletions
diff --git a/mcs/errors/cs0110.cs b/mcs/errors/cs0110.cs
new file mode 100755
index 00000000000..81abb2390f3
--- /dev/null
+++ b/mcs/errors/cs0110.cs
@@ -0,0 +1,29 @@
+class A {
+ int a;
+
+ class B {
+ int b;
+
+ class C {
+ int c;
+
+ void m ()
+ {
+ c = 1;
+ }
+
+ enum F {
+ A, B, C, D = X, E
+ }
+
+ const int X = Y + 1;
+ const int Y = 1 + (int) F.E;
+ }
+ }
+
+ static int Main (string [] args)
+ {
+ return 0;
+ }
+
+}