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

--- Comment #12 from Martin Nowak <[email protected]> ---
The basic problem with this is using inference on something that cannot be
inferred.

void seeminglyPure() {
// ...
// many lines of code
// ...
    asm {
        // impure instruction
    }
}

Now when someone adds pure to seeminglyPure it would silently break.

--

Reply via email to