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

--- Comment #7 from FeepingCreature <default_357-l...@yahoo.de> ---
Unified with what I'm learning from the testcase from 21235:

```
// gag the foo error
static assert(!__traits(compiles, foo()));

void foo()() {
    static assert(false);
    bar!();
}

// foo() is not errored while bar compiles? because circular
void bar()() { foo(); }

// no error
void main() { bar(); }
```

I don't think we'll get it smaller than this.

--

Reply via email to