[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0165-56.cs
blob06eb6cc8df17d6ca5549975aae2c19982ebfb646
1 // CS0165: Use of unassigned local variable `s'
2 // Line: 12
4 class X
6 static string Foo (object arg)
8 if (arg is string s) {
12 return s;