```d void foo()(){static assert(0);} unittest{ import std; static if(__traits(compiles,foo)){ "yay".writeln; foo; } else { ";__;".writeln; } } ``` >Error: static assert: `0` is false