Merge pull request #487 from mayerwin/patch-1
[mono.git] / mcs / tests / test-277.cs
1 // test for bug #56774
2
3 class T {
4         public static int Main () {
5                 return X (1);
6         }
7   
8         static int X (byte x) {
9                 return 0;
10         }
11         static int X (short x) {
12                 return 1;
13         }
14 }