linux-packaging-mono/mcs/tests/gtest-initialize-11.cs
Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

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;
}
}
}