Related https://github.com/lampepfl/dotty/pull/13400 ## Compiler version 3.3.1-RC4 ## Minimized code ```Scala @main def foo(): Unit = //This works: val value1: scala.compiletime.ops.int.S[0] = 1 //This doesn't work: val value2: scala.compiletime.ops.long.S[0L] = 1L ``` ## Output Compiler generates error for `1L`: <img width="758" alt="image" src="https://github.com/lampepfl/dotty/assets/3989292/53b9c644-f47c-4d82-aa7d-9eec110cf8fc"> ## Expectation No compilation error. Type `scala.compiletime.ops.long.S[0L]` should be equal to `1L`