13 lines
175 B
C#
13 lines
175 B
C#
|
// CS0029: Cannot implicitly convert type `anonymous type' to `bool'
|
||
|
// Line: 10
|
||
|
|
||
|
|
||
|
public class Test
|
||
|
{
|
||
|
static void Main ()
|
||
|
{
|
||
|
var o = new { Value = 1 };
|
||
|
bool b = o;
|
||
|
}
|
||
|
}
|