summaryrefslogtreecommitdiff
path: root/test/files/buildmanager/t2651_4/t2651_4.check
diff options
context:
space:
mode:
authorHubert Plociniczak <hubert.plociniczak@epfl.ch>2010-02-10 16:51:13 +0000
committerHubert Plociniczak <hubert.plociniczak@epfl.ch>2010-02-10 16:51:13 +0000
commit4de81a05b3cc682a92eb43fb023314d580f639fb (patch)
treed96436ea1aac0a332dab5bdc3aab31b71b12bd43 /test/files/buildmanager/t2651_4/t2651_4.check
parenta165920200847b9aa336786dffc5d33ce5b86ab8 (diff)
downloadscala-4de81a05b3cc682a92eb43fb023314d580f639fb.tar.gz
scala-4de81a05b3cc682a92eb43fb023314d580f639fb.tar.bz2
scala-4de81a05b3cc682a92eb43fb023314d580f639fb.zip
Closes #2651
Diffstat (limited to 'test/files/buildmanager/t2651_4/t2651_4.check')
-rw-r--r--test/files/buildmanager/t2651_4/t2651_4.check13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/files/buildmanager/t2651_4/t2651_4.check b/test/files/buildmanager/t2651_4/t2651_4.check
new file mode 100644
index 0000000000..c4ce382b5f
--- /dev/null
+++ b/test/files/buildmanager/t2651_4/t2651_4.check
@@ -0,0 +1,13 @@
+builder > A.scala B.scala
+compiling Set(A.scala, B.scala)
+Changes: Map()
+builder > A.scala
+compiling Set(A.scala)
+Changes: Map(trait A -> List(Changed(Definition(A.x))[method x changed from ()T to ()T flags: <deferred> <method>], Changed(Definition(A.y))[method y changed from (a: T)Unit to (a: T)Unit flags: <deferred> <method>], Changed(Definition(A.z))[method z changed from [B <: T]()Unit to [B <: T]()Unit flags: <deferred> <method>]))
+invalidate B.scala because inherited method changed [Changed(Definition(A.x))[method x changed from ()T to ()T flags: <deferred> <method>]]
+compiling Set(B.scala)
+B.scala:2: error: type mismatch;
+ found : Int(3)
+ required: String
+ def x = 3
+ ^