## Compiler version 3.2.2 ## Minimized code ```Scala import scala.compiletime.* class c2[i <: Int] { println("constValueOpt:" + constValueOpt[i]) } new c2[2] ``` ## Output constValueOpt:None ## Expectation should be constValueOpt:Some(2)