2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0122.cs
blob8118e4377a0aa92c3c5efb91ca200bd6a390396c
1 // cs0122.cs: `Y.x()' is inaccessible due to its protection level
2 // Line: 15
3 using System;
5 class Y {
6 void x () {}
10 class X {
11 static int Main ()
13 Y y = new Y ();
15 y.x ();
16 return 0;