a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
22 lines
255 B
C#
22 lines
255 B
C#
using System;
|
|
|
|
namespace InlineAssignmentTest
|
|
{
|
|
public class Foo
|
|
{
|
|
public bool B = true;
|
|
}
|
|
|
|
public class MainClass
|
|
{
|
|
public static int Main ()
|
|
{
|
|
var foo = new Foo () { B = false };
|
|
if (foo.B != false)
|
|
return 1;
|
|
|
|
return 0;
|
|
}
|
|
}
|
|
}
|