12 lines
184 B
C#
Raw Normal View History

// CS0819: An implicitly typed local variable declaration cannot include multiple declarators
// Line: 9
public class Test
{
static void Main ()
{
var v = "foo", w = "bar";
}
}