(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0110.cs
blob81abb2390f37ac8451835a8dd130bab68e99ff20
1 class A {
2 int a;
4 class B {
5 int b;
7 class C {
8 int c;
10 void m ()
12 c = 1;
15 enum F {
16 A, B, C, D = X, E
19 const int X = Y + 1;
20 const int Y = 1 + (int) F.E;
24 static int Main (string [] args)
26 return 0;