2005-06-29 Jonathan Chambers <jonathan.chambers@ansys.com>
[mcs.git] / errors / cs0665.cs
blob6b42211b8411a469d1e33af600d5f7ade2cc7f43
1 // cs0665.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 void Foo (bool x)
9 bool b;
10 if (b = true)
11 System.Console.WriteLine (b);