On Wednesday, 19 February 2020 at 05:42:19 UTC, Walter Bright
wrote:
> so it is inlining both forms. If you do have trivial functions
> that aren't being inlined, please let me know. Thanks!
Anything with a 'switch':
void foo() {
switch(true) {
default:
}
}