Two files: ```scala // Constraints.scala package server trait Constraints { class ConstraintEntry(constraint : List[_]) } ``` and ```scala // Test.scala package server object Test extends Constraints ``` Clean compile no problem. Afterwards compile test (in a fresh compiler instance): "object creation impossible, since type _$$1 in trait Constraints with bounds >: Nothing <: Any is not defined"