2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs1113.cs
blobeda00f3ae533fccd48ea99a3ff6c1e9a78770669
1 // CS1113: Extension method `Extension.Foo(this S)' of value type `S' cannot be used to create delegates
2 // Line: 12
5 delegate void D ();
7 public class C
9 static void Main ()
11 S s = new S ();
12 D d = s.Foo;
16 public struct S
20 public static class Extension
22 public static void Foo (this S s) { }