In VS Code with Scala 3.6.2 and metals 1.4.2 ## Compiler version 3.6.2 ## 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 def fromInt[T: Numeric as num](t: Int): T = num.fromInt(t) // ^^^ ``` ## Output no hover ## Expectation should display that `num: Numeric[T]` or something like that