[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0649.cs
blobaf96084fdd1b6ba37ac01efe8de010055328f406
1 // CS0649: Field `X.s' is never assigned to, and will always have its default value `null'
2 // Line: 4
3 // Compiler options: -warnaserror -warn:4
5 class X {
6 string s;
8 string Value {
9 get {
10 return s;