[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0122-31.cs
blob4b243c5d68f0b4ff02eb1c8c6f058ac801881c5e
1 // CS0122: `Data.Count' is inaccessible due to its protection level
2 // Line: 13
4 class Data
6 int Count;
9 public class Test
11 static void Main ()
13 var c = new Data { Count = 10 };