## Compiler version 3.2.0-RC1 with "-coverage-out:." ## Minimized code <!-- This code should be self contained, compilable (with possible failures) and as small as possible. Ideally, we should be able to just copy this code in a file and run `scalac` (and maybe `scala`) to reproduce the issue. --> ```Scala @main def main: Unit = println(hexMe(127)) def hexMe(i: Int): String = f"0x$i%016x" ``` ## Output ``` [error] 5 | f"0x$i%016x" [error] | ^^^^^^^^^^^^ [error] | Expected statically known StringContext [error] one error found ``` ## Expectation Code compiles