## Compiler version 3.3.0-RC4 ## 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 trait A: inline def g = 1 trait B extends A: def f = super.g class C extends B ``` ## Output ```scala 5 |class C extends B | ^ |Member method g of mixin trait B is missing a concrete super implementation in class C. ``` ## Expectation Should compile