Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / test-416.cs
1 // Compiler options: -addmodule:test-416-mod.netmodule
2
3 using n1;
4 using System;
5
6 public class ModTest
7 {
8         
9         public static void Main(string[] args)
10         {
11                 Adder a=new Adder();
12                 Console.WriteLine(a.Add(2,3));
13         }
14
15 }