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:
Diffstat (limited to 'mcs/errors/cs0110.cs')
-rwxr-xr-xmcs/errors/cs0110.cs29
1 files changed, 0 insertions, 29 deletions
diff --git a/mcs/errors/cs0110.cs b/mcs/errors/cs0110.cs
deleted file mode 100755
index 81abb2390f3..00000000000
--- a/mcs/errors/cs0110.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-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;
- }
-
-}