**** Merged from MCS ****
[mono-project.git] / mcs / errors / cs0654.cs
blob9622867128bf31c24b525b7f26cd6e18042d5ec6
1 // cs0654.cs: Method referenced without argument list.
2 // Line: 12
3 class X {
4 int a (int a)
6 return 0;
9 void b ()
11 int x = a;