https://issues.dlang.org/show_bug.cgi?id=24032
--- Comment #4 from Puneet Goel <[email protected]> --- Even if we have to do token parsing for q{}, the following code should not fail. class Foo(string str) {} void main() { Foo!q{string str = "0X"} foo; Foo!q{string str = "0B"} bar; } The compiler gives the same errors as it gives for q{0B} and q{0X}. --
