2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0118-8.cs
blob3497e1ae4a33b06e27590d36e8159470429061b0
1 // CS0118: `A.Foo(string)' is a `method group' but a `type' was expected
2 // Line: 15
4 public class A
6 public static void Foo (string Setting)
11 class Example
13 public void Main(string[] args)
15 A a = new A.Foo ("test");