summaryrefslogtreecommitdiff
path: root/test/files/pos/spec-funs.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2011-09-20 15:13:16 +0000
committerMartin Odersky <odersky@gmail.com>2011-09-20 15:13:16 +0000
commit088094b1c82ee38b10d84c4826b740a4e0f5f0fe (patch)
tree126be0feb2d2c910692f141117110f3e0fd29971 /test/files/pos/spec-funs.scala
parentf6d4d84dd7eb5de3e7f698c7f627d483b6999142 (diff)
downloadscala-088094b1c82ee38b10d84c4826b740a4e0f5f0fe.tar.gz
scala-088094b1c82ee38b10d84c4826b740a4e0f5f0fe.tar.bz2
scala-088094b1c82ee38b10d84c4826b740a4e0f5f0fe.zip
Changes to Liftcode to use new reflection seman...
Changes to Liftcode to use new reflection semantics, where a compiler uses type checking.
Diffstat (limited to 'test/files/pos/spec-funs.scala')
-rw-r--r--test/files/pos/spec-funs.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/pos/spec-funs.scala b/test/files/pos/spec-funs.scala
index 5fea5e9560..d54dfd8227 100644
--- a/test/files/pos/spec-funs.scala
+++ b/test/files/pos/spec-funs.scala
@@ -54,10 +54,10 @@ final class ClosureTest {
}
}
-object TestInt extends testing.Benchmark {
+object TestInt extends scala.testing.Benchmark {
def run() = (new IntTest).run()
}
-object TestClosure extends testing.Benchmark {
+object TestClosure extends scala.testing.Benchmark {
def run() = (new ClosureTest).run()
}