Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0665-2.cs
1 // Cs0665: Assignment in conditional expression is always constant. Did you mean to use `==' instead ?
2 // Line: 10
3 // Compiler options: /warnaserror
4
5 class Test
6 {
7         public bool Foo (bool x)
8         {
9                 bool b;
10                 return (b = true) ? true : b;
11         }
12 }
13