mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
19 lines
257 B
D
19 lines
257 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail21928b.d(18): Error: this array literal causes a GC allocation in `@nogc` function `main`
|
|
---
|
|
*/
|
|
|
|
@nogc:
|
|
|
|
|
|
struct Shape
|
|
{
|
|
immutable size_t[] dims = [];
|
|
}
|
|
|
|
void main()
|
|
{
|
|
auto s = Shape(Shape.init.dims ~ 2);
|
|
}
|