14 lines
168 B
C#
14 lines
168 B
C#
|
// 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)
|
||
|
{
|
||
|
}
|
||
|
}
|