// CS0029: Cannot implicitly convert type `string' to `int'
// Line: 8

class C
{
	void Exists (int _)
	{
		_ = "2";
	}	
}