a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
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)
|
|
{
|
|
}
|
|
} |