## Compiler version 3.3.0-RC1-bin-20230109-f56089b-NIGHTLY ## 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 package test trait Ctx object Ops: extension (i: Int) def foo() = i + 1 extension (using Ctx)(i: Int) def bar() = i + 2 extension (i: Int)(using Ctx) def baz() = i + 3 ``` ## Output  ## Expectation The first `(i: Int)` in the signature of each extension should not be there