Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / test-416-mod.cs
1 // Compiler options: -t:module
2
3 namespace n1
4 {
5         public class Adder
6         {
7                 public int Add(int x, int y)
8                 {
9                         return x+y;
10                 }
11         }
12 }