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/cs0122.cs')
-rwxr-xr-xmcs/errors/cs0122.cs18
1 files changed, 0 insertions, 18 deletions
diff --git a/mcs/errors/cs0122.cs b/mcs/errors/cs0122.cs
deleted file mode 100755
index 47078b0fdf8..00000000000
--- a/mcs/errors/cs0122.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-// cs0122.cs: y.x is inaccessible due to its protection level
-// Line: 15
-using System;
-
-class Y {
- void x () {}
-
-}
-
-class X {
- static int Main ()
- {
- Y y = new Y ();
-
- y.x ();
- return 0;
- }
-}