1 2 3 4 5 6 7 8 9 10 11 12 13 14
// CS0117: `X' does not contain a definition for `P' // Line: 11 class X { public void Test () { Foo (); } public static void Foo (string Product = X.P) { } }