14 lines
168 B
C#
Raw Permalink Normal View History

// 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)
{
}
}