https://issues.dlang.org/show_bug.cgi?id=14638
--- Comment #4 from Andrei Alexandrescu <[email protected]> --- (In reply to Jonathan M Davis from comment #3) > However, I don't understand what you mean by dynamic and static uses. Is a > dynamic use one that may or may not be the last one hit depending on what > occurs after it, whereas a static use is guaranteed to be the last use if > it's hit? Static is as you read the code in lexical order, dynamic is as it actually gets executed. --
