https://issues.dlang.org/show_bug.cgi?id=19091

--- Comment #2 from FeepingCreature <default_357-l...@yahoo.de> ---
Found a new version of this bug:

```
void early()() { Struct!() var; }

struct Struct() { void fun() { error; } }

void main() {
    void helper()() { early; }

    static assert(!__traits(compiles, helper()));
    helper();
}
```

--

Reply via email to