7d05485754
Former-commit-id: df344e34b07851d296efb3e6604c8db42b6f7aa3
11 lines
168 B
C#
11 lines
168 B
C#
// CS0128: A local variable named `xx' is already defined in this scope
|
|
// Line: 9
|
|
|
|
class X
|
|
{
|
|
public static void Main ()
|
|
{
|
|
short xx;
|
|
var (xx, yy) = (1, 'g');
|
|
}
|
|
} |