Add support for Windows x64 Full AOT + LLVM + Interpreter on CI. (#15276)
[mono-project.git] / mcs / tests / gtest-initialize-11.cs
blob249fa947d25670625a7a34b28f3099564ed4a152
1 using System;
3 namespace InlineAssignmentTest
5 public class Foo
7 public bool B = true;
10 public class MainClass
12 public static int Main ()
14 var foo = new Foo () { B = false };
15 if (foo.B != false)
16 return 1;
18 return 0;