summaryrefslogtreecommitdiff
path: root/test/files/buildmanager/t2556_1/t2556_1.check
blob: 2e501c8f6fffb33b8f57cf05e9bb3eaa9179ff22 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
builder > A.scala B.scala
compiling Set(A.scala, B.scala)
Changes: Map()
builder > A.scala
compiling Set(A.scala)
Changes: Map(class A -> List(Changed(Definition(A.x))[method x changed from (i: Int)String to (i: String)String flags: <method>]))
invalidate B.scala because inherited method changed [Changed(Definition(A.x))[method x changed from (i: Int)String to (i: String)String flags: <method>]]
compiling Set(B.scala)
B.scala:2: error: overriding method x in class A of type (i: String)String;
 method x needs `override' modifier
  def x(s: String) = s+"5"
      ^