2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0665-2.cs
blob9c339c3070d8c48bdd1242e7b874146de781a217
1 // Cs0665: Assignment in conditional expression is always constant. Did you mean to use `==' instead ?
2 // Line: 10
3 // Compiler options: /warnaserror
5 class Test
7 public bool Foo (bool x)
9 bool b;
10 return (b = true) ? true : b;