2002-07-06 Andrew Birkett <adb@tardis.ed.ac.uk>
[mono.git] / mcs / errors / cs0110.cs
1 class A {
2         int a;
3         
4         class B {
5                 int b;
6
7                 class C {
8                         int c;
9
10                         void m ()
11                         {
12                                 c = 1;
13                         }
14
15                         enum F {
16                                 A, B, C, D = X, E
17                         }
18
19                         const int X = Y + 1;
20                         const int Y = 1 + (int) F.E;
21                 }
22         }
23
24         static int Main (string [] args)
25         {
26                 return 0;
27         }
28
29 }