## Steps Given code like this: ```scala val NalRefIdxMask = 0b011 // NRI ``` ## Problem Scalafmt formats code like this: ```scala error: Invalid literal number, followed by identifier character ``` ## Expectation I would like the formatted output to look like this: ```scala val NalRefIdxMask = 0b011 // NRI ``` ## Notes https://github.com/scala/scala3/pull/19405