[System.Windows.Forms] Disable failing test
[mono-project.git] / mcs / tests / test-909.cs
blob8527bb951eb5452947b01e8af8771d90040c2da0
1 using System;
3 public struct S
5 public int A { get; private set;}
6 public event EventHandler eh;
8 public S (int a)
10 this.eh = null;
11 A = a;
14 public static void Main ()