Merge pull request #819 from brendanzagaeski/patch-1
[mono.git] / mcs / errors / cs0117-8.cs
1 // CS0117: `X' does not contain a definition for `P'
2 // Line: 11
3
4 class X
5 {
6         public void Test ()
7         {
8                 Foo ();
9         }
10
11         public static void Foo (string Product = X.P)
12         {
13         }
14 }