{ object C extends Object with ScalaObject with Serializable { def () = { super.(); () }; def qwe: Int = 4 }; case class C extends Object with ScalaObject with Product with Serializable { val foo : Int = _; val bar : Int = _; def (foo: Int, bar: Int) = { super.(); () } }; val c = C.apply(2, 2); scala.this.Predef.println(c.foo.$times(c.bar).$eq$eq(C.qwe)) }