// cs0654.cs: Method referenced without argument list. // Line: 12 class X { int a (int a) { return 0; } void b () { int x = a; } }