[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / errors / cs0038-4.cs
blob021ff3f59d7f01e6c7f6a004d312339eb482aaa7
1 // CS0038: Cannot access a nonstatic member of outer type `B' via nested type `B.C'
2 // Line: 14
4 public class B {
5 public static void Main ()
9 public int Foo { get { return 1; } }
11 public class C {
12 public void Baz ()
14 int x = Foo;