10 lines
122 B
C#
Raw Normal View History

// CS0029: Cannot implicitly convert type `string' to `int'
// Line: 8
class C
{
void Exists (int _)
{
_ = "2";
}
}