mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
19 lines
256 B
D
19 lines
256 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail21928.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(2 ~ Shape.init.dims);
|
|
}
|