retag
[mcs.git] / errors / cs0665-2.cs
blob4b93edad1eb7f36de12d2b46eb23115e30b42b95
1 // cs0665-2.cs : Assignment in conditional expression is always constant; did you mean to use == instead of = ?
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;