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

9 lines
227 B
D

// https://issues.dlang.org/show_bug.cgi?id=21680
struct Unique
{
alias ValueType = typeof({ return field; }()); /* Error: need `this` for
`field` of type `int` */
int field;
static assert(is(ValueType == int));
}