C(2,3) () { case class C extends AnyRef with Product with Serializable { private[this] val x: Int = _; def x: Int = C.this.x; private[this] val y: Int = _; def y: Int = C.this.y; def (x: Int, y: Int): C = { C.super.(); () }; def copy(x: Int = x, y: Int = y): C = new C(x, y); def copy$default$1: Int = C.this.x; def copy$default$2: Int = C.this.y; override def productPrefix: String = "C"; def productArity: Int = 2; def productElement(x$1: Int): Any = x$1 match { case 0 => C.this.x case 1 => C.this.y case _ => throw new IndexOutOfBoundsException(x$1.toString()) }; override def productIterator: Iterator[Any] = scala.runtime.ScalaRunTime.typedProductIterator[Any](C.this); def canEqual(x$1: Any): Boolean = x$1.$isInstanceOf[C](); override def hashCode(): Int = { var acc: Int = -889275714; acc = scala.runtime.Statics.mix(acc, x); acc = scala.runtime.Statics.mix(acc, y); scala.runtime.Statics.finalizeHash(acc, 2) }; override def toString(): String = scala.runtime.ScalaRunTime._toString(C.this); override def equals(x$1: Any): Boolean = C.this.eq(x$1.asInstanceOf[Object]).||(x$1 match { case (_: C) => true case _ => false }.&&({ val C$1: C = x$1.asInstanceOf[C]; C.this.x.==(C$1.x).&&(C.this.y.==(C$1.y)).&&(C$1.canEqual(C.this)) })) }; object C extends scala.runtime.AbstractFunction2[Int,Int,C] with Serializable { def (): C.type = { C.super.(); () }; final override def toString(): String = "C"; case def apply(x: Int, y: Int): C = new C(x, y); case def unapply(x$0: C): Option[(Int, Int)] = if (x$0.==(null)) scala.None else Some.apply[(Int, Int)](scala.Tuple2.apply[Int, Int](x$0.x, x$0.y)) }; Predef.println(C.apply(2, 3)) } error!