cleol
[mcs.git] / errors / gcs0029-5.cs
blob99de675970c353d7daa57a2625e86fc3bedfa872
1 // CS0029: Cannot implicitly convert type `anonymous type' to `bool'
2 // Line: 10
5 public class Test
7 static void Main ()
9 var o = new { Value = 1 };
10 bool b = o;