Merge pull request #4935 from lambdageek/dev-handles-may
[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 }