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