Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-909.cs
1 using System;
2
3 public struct S
4 {
5         public int A { get; private set;}
6         public event EventHandler eh;
7
8         public S (int a)
9         {
10                 this.eh = null;
11                 A = a;
12         }
13
14         public static void Main ()
15         {
16         }
17 }