Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / test-417.cs
1 // Compiler options: -r:test-417-lib.dll
2
3 using System;
4 using blah;
5
6 namespace blah2
7 {
8
9 public class MyClass
10 {
11     public event MyFunnyDelegate DoSomething;
12
13     public void DoSomethingFunny()
14     {
15         if (DoSomething != null) DoSomething(this, "hello there", "my friend");
16     }
17
18         public static void Main(string[] args)
19         {
20                 MyClass mc = new MyClass();
21                 mc.DoSomethingFunny();
22
23         }
24 }
25
26 }