Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-817.cs
1 namespace System
2 {
3         public struct Int32
4         {
5                 public int Value;
6         }
7
8         class Program
9         {
10                 public static void Main ()
11                 {
12                         Int32 a = new Int32 ();
13                         a.Value = 6;
14                 }
15         }
16 }