Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-anon-144.cs
1 using System;
2
3 namespace UiaAtkBridgeTest
4 {
5         class Test
6         {
7                 public static void Invoke (EventHandler d)
8                 {
9                 }
10         }
11
12         public class GailTester
13         {
14                 public void ThisCausesACrash<I> ()
15                 {
16                         Test.Invoke (delegate { });
17                 }
18                 
19                 public static void Main ()
20                 {
21                 }
22         }
23 }