10 lines
122 B
C#
Raw Normal View History

// CS0103: The name `_' does not exist in the current context
// Line: 8
class C
{
void Test ()
{
_.ToString ();
}
}