Merge branch 'master' of http://github.com/mono/mono
[mono.git] / mcs / errors / gcs0117.cs
1 // CS0117: `A' does not contain a definition for `Method'
2 // Line: 8
3
4 public class E : A
5 {
6         void Test ()
7         {
8                 base.Method ();
9         }
10 }
11
12 static class S
13 {
14         public static void Method (this A a)
15         {
16         }
17 }
18
19 public class A
20 {
21 }