mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
8 lines
152 B
D
8 lines
152 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/ice8711.d(8): Error: cannot use array to initialize `int function(int)`
|
|
---
|
|
*/
|
|
|
|
int function(int) foos = [x => 0];
|