mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
13 lines
233 B
D
13 lines
233 B
D
// https://issues.dlang.org/show_bug.cgi?id=24745
|
|
|
|
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/test24745.d(12): Error: incorrect syntax for associative array, expected `[]`, found `{}`
|
|
---
|
|
*/
|
|
|
|
void main()
|
|
{
|
|
int[int] f = {1: 1, 2: 2};
|
|
}
|