Merge pull request #4935 from lambdageek/dev-handles-may
[mono.git] / mcs / tests / dtest-026.cs
1 // Dynamic and value types
2
3 struct S
4 {
5         public int Value;
6 }
7
8 class C
9 {
10         static dynamic f;
11         
12         public static int Main ()
13         {
14                 f = new S ();
15                 f.Value = 5;
16                 if (f.Value != 5)
17                         return 1;
18
19                 return 0;
20         }
21 }