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; } }