[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / errors / cs0122-39.cs
blobf7da1f94bfba4867565af79ba1490a2e92b8c715
1 // CS0122: `A.Y' is inaccessible due to its protection level
2 // Line: 8
4 public class Test
6 public static void Main ()
8 var x = nameof (A.Y);
12 public class A
14 private int Y { get; set; }