[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0154.cs
blobf18a1e4dca636cdeca6c8a5cfb1810ba6f3124c0
1 // CS0154: The property or indexer `A.name' cannot be used in this context because it lacks the `get' accessor
2 // Line: 21
4 public class A
6 public string name
8 set
10 name = value;
15 public class B
17 public static void Main ()
19 A a = new A ();
20 string b = a.name;