* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / errors / cs0665.cs
1 // cs0665.cs : Assignment in conditional expression is always constant; did you mean to use == instead of = ?
2 // Line: 10
3 // Compiler options: /warnaserror
4
5 class Test
6 {
7         public void Foo (bool x)
8         {
9                 bool b;
10                 if (b = true)
11                         System.Console.WriteLine (b);
12         }
13 }
14