2006-03-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / errors / cs0428.cs
1 // cs0428.cs: Cannot convert method group `a' to non-delegate type `int'. Did you intend to invoke the method?
2 // Line: 12
3
4 class X {
5         int a (int a)
6         {
7                 return 0;
8         }
9
10         void b ()
11         {
12                 int x = a;
13         }
14 }