Files
linux-packaging-mono/mcs/errors/cs0128-4.cs

14 lines
202 B
C#
Raw Normal View History

// CS0128: A local variable named `s' is already defined in this scope
// Line: 12
class C
{
public static void Main ()
{
object o = null;
var x1 = o is string s;
var x2 = o is string s;
}
}