summaryrefslogtreecommitdiff
path: root/test/files/buildmanager/t2556_3/t2556_3.check
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2013-01-12 00:54:44 +0100
committerJason Zaugg <jzaugg@gmail.com>2013-01-12 09:23:37 +0100
commitb61a64ddb5700b5d77295df43af0e3feb3c46ac6 (patch)
tree39ffbf990bf045a5f064228dbe27ab16e4060cbd /test/files/buildmanager/t2556_3/t2556_3.check
parent64ec51b31f9563580e250ac45714b9d3d86abde1 (diff)
downloadscala-b61a64ddb5700b5d77295df43af0e3feb3c46ac6.tar.gz
scala-b61a64ddb5700b5d77295df43af0e3feb3c46ac6.tar.bz2
scala-b61a64ddb5700b5d77295df43af0e3feb3c46ac6.zip
SI-6964 Remove build managers, both simple and refined.
Deprecated in 2.10.0, out to pasture in 2.11.0. Users are advised to migrate to: https://github.com/typesafehub/zinc http://www.scala-sbt.org/
Diffstat (limited to 'test/files/buildmanager/t2556_3/t2556_3.check')
-rw-r--r--test/files/buildmanager/t2556_3/t2556_3.check18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/files/buildmanager/t2556_3/t2556_3.check b/test/files/buildmanager/t2556_3/t2556_3.check
deleted file mode 100644
index 34f90f7f9b..0000000000
--- a/test/files/buildmanager/t2556_3/t2556_3.check
+++ /dev/null
@@ -1,18 +0,0 @@
-builder > A.scala B.scala C.scala
-compiling Set(A.scala, B.scala, C.scala)
-Changes: Map()
-builder > A.scala
-compiling Set(A.scala)
-Changes: Map(class A -> List(), class B -> List(Changed(Class(B))[List((A,Object))]))
-invalidate C.scala because parents have changed [Changed(Class(B))[List((A,Object))]]
-invalidate B.scala because it references invalid (no longer inherited) definition [ParentChanged(Class(C))]
-compiling Set(B.scala, C.scala)
-B.scala:3: error: type mismatch;
- found : C
- required: ?{def x: ?}
-Note that implicit conversions are not applicable because they are ambiguous:
- both method any2Ensuring in object Predef of type [A](x: A)Ensuring[A]
- and method any2ArrowAssoc in object Predef of type [A](x: A)ArrowAssoc[A]
- are possible conversion functions from C to ?{def x: ?}
- println( (new C).x )
- ^