Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / test-142.cs
1 using System;
2
3 public class TestClass : TestBaseClass {
4
5         public TestClass (EventHandler hndlr) : base ()
6         {
7                 Blah += hndlr;
8         }
9
10         public static int Main ()
11         {
12                 return 0;
13         }
14 }
15
16 public class TestBaseClass {
17
18         public event EventHandler Blah;
19
20 }