a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
10 lines
219 B
C#
10 lines
219 B
C#
// CS0622: Can only use array initializer expressions to assign to array types. Try using a new expression instead
|
|
// Line: 7
|
|
|
|
class X {
|
|
public static void Main ()
|
|
{
|
|
int i = { 3, 4, 5};
|
|
}
|
|
}
|