blob: b5d16691cb876d661cb6172943e01d7ea4b9c5d4 [file] [log] [blame]
/*
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
}