e2950ec768
Former-commit-id: fc39669a0b707dd3c063977486506b6793da2890
10 lines
122 B
C#
10 lines
122 B
C#
// CS0103: The name `_' does not exist in the current context
|
|
// Line: 8
|
|
|
|
class C
|
|
{
|
|
void Test ()
|
|
{
|
|
_.ToString ();
|
|
}
|
|
} |