2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0165-3.cs
blob192b7f7e0bdc00c36d2f340dc07afa3c39b40299
1 // cs0165.cs: 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 " ";