aboutsummaryrefslogblamecommitdiff
path: root/tests/pos/sepComp/A_1.scala
blob: 03d574705242fd1a69b6299a8ed2c81d4ce339bb (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                               
package sepComp

class A(y: Int) {

  val x: Int = y

}

object A {

  def apply(x: Int) = new A(22)

}