[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0165-3.cs
blob524818b694211d0ac90f6c553f3fcd19b6f97b01
1 // CS0165: Use of unassigned local variable `s'
2 // Line: 9
4 public class Test
6 public static string Foo {
7 get {
8 string s;
9 if (0 == 1 && (s = "") == "a" || s == "")
10 return s;
11 return " ";