summaryrefslogtreecommitdiff
path: root/test/files/buildmanager/t2655/t2655.check
blob: 41ce65a2f5d536d6a618716d189c5b2f3787ae36 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
builder > A.scala B.scala
compiling Set(A.scala, B.scala)
Changes: Map()
builder > A.scala
compiling Set(A.scala)
Changes: Map(object A -> List(Changed(Definition(A.x))[method x changed from (i: Function0)Unit to (i: Function0)Unit flags: <method> <triedcooking>]))
invalidate B.scala because it references changed definition [Changed(Definition(A.x))[method x changed from (i: Function0)Unit to (i: Function0)Unit flags: <method> <triedcooking>]]
compiling Set(B.scala)
B.scala:2: error: type mismatch;
 found   : String("3")
 required: () => String
  val x = A.x("3")
              ^