[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0677.cs
blob58d4a050695e23159cb38aec880e86f3cb6376f6
1 // CS0677: `X.a': A volatile field cannot be of the type `A'
2 // Line: 8
3 using System;
5 struct A { int a; }
7 class X {
8 public volatile A a;
9 static void Main ()