dmd/compiler/test/fail_compilation/fail111.d
2022-07-09 18:53:07 +02:00

17 lines
334 B
D

/*
TEST_OUTPUT:
---
fail_compilation/fail111.d(12): Error: cannot have array of `int(int)`
---
*/
// https://issues.dlang.org/show_bug.cgi?id=289
// Compiler allows (and crashes on) dynamic arrays of typedefs of "immediate"-function types
alias int ft(int);
ft[] x; // is allowed
void test()
{
x.length = 2; // crashes DMD
}