[arm64] Add the full neon regs to the context
[mono.git] / mcs / tests / gtest-initialize-11.cs
1 using System;
2
3 namespace InlineAssignmentTest
4 {
5         public class Foo
6         {
7                 public bool B = true;
8         }
9
10         public class MainClass
11         {
12                 public static int Main ()
13                 {
14                         var foo = new Foo () { B = false };
15                         if (foo.B != false)
16                                 return 1;
17
18                         return 0;
19                 }
20         }
21 }