[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs1525-15.cs
bloba322aa49d7ccca469f78e31577ae9e7478ad186f
1 // CS1525: Unexpected symbol `;', expecting `,' or `}'
2 // Line: 10
4 class X {
5 public int Field;
7 static void Main ()
9 var x = new X () {
10 Field = 1;