dmd/compiler/test/compilable/test24762.d

11 lines
263 B
D

// https://issues.dlang.org/show_bug.cgi?id=24762
struct S { int m; }
string m() { return "m"; }
@nogc void f()
{
S s;
enum t = m();
auto x = __traits(getMember, s, m()); // Error: `@nogc` function `nogc.f` cannot call non-@nogc function `nogc.m`
}