Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0165-3.cs
1 // CS0165: Use of unassigned local variable `s'
2 // Line: 9
3
4 public class Test
5 {
6         public static string Foo {
7                 get {
8                         string s;
9                         if (0 == 1 && (s = "") == "a" || s == "")
10                                 return s;
11                         return " ";
12                 }
13         }
14 }