mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
12 lines
305 B
D
12 lines
305 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail5953a2.d(11): Error: expression expected, not `,`
|
|
fail_compilation/fail5953a2.d(11): Error: expression expected, not `,`
|
|
fail_compilation/fail5953a2.d(11): Error: expression expected, not `,`
|
|
---
|
|
*/
|
|
void main()
|
|
{
|
|
auto a3 = [,,,]; // invalid, but compiles
|
|
}
|