## Compiler version 3.0.0, 3.0.1, 3.1.0, 3.1.1-RC2 ## Minimized code ```Scala import scala.compiletime.* trait C[A] inline given [Tup <: Tuple]: C[Tup] with val cs = summonAll[Tuple.Map[Tup, C]] ``` ## Output Compilation error: ```scala method summonAll is declared as `inline`, but was not inlined ``` ## Expectation Compile successfully, or at least provide a better error message if the construct is indeed invalid.