summaryrefslogtreecommitdiff
path: root/mcs/tests/test-277.cs
blob: 720b787fb1a582dbb2c5ab01e24b8ba3d55822bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// test for bug #56774

class T {
	public static int Main () {
		return X (1);
	}
  
	static int X (byte x) {
		return 0;
	}
	static int X (short x) {
		return 1;
	}
}