In ilasm/tests:
[mcs.git] / errors / cs0428.cs
blob5ef06a55e09c830197c05b3c31f7aab7cc4bfd39
1 // cs0428.cs: Cannot convert method group `a' to non-delegate type `int'. Did you intend to invoke the method?
2 // Line: 12
4 class X {
5 int a (int a)
7 return 0;
10 void b ()
12 int x = a;