[interp] disable assemblyresolve_event6.exe
[mono.git] / mono / tests / bug-472600.2.cs
1 using System;\r
2 using System.Collections.Generic;\r
3 \r
4 public class EventInfoTestClass\r
5 {\r
6         static EventInfoTestClass ()\r
7         {\r
8                 string s = System.Environment.StackTrace;\r
9         }\r
10 }\r
11 \r
12 class Test\r
13 {\r
14         static void Main ()\r
15         {\r
16                 TestEventSubscription<object> ();\r
17         }\r
18 \r
19         public static void TestEventSubscription<T> ()\r
20         {\r
21                 new EventInfoTestClass ();\r
22         }\r
23 }\r