summaryrefslogtreecommitdiff
path: root/test/files/run/t5912.scala
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2014-01-03 02:31:39 -0800
committerJason Zaugg <jzaugg@gmail.com>2014-01-03 02:31:39 -0800
commit718b26baa6113bef9ce3ebc7c439e099615db78d (patch)
tree91b1cb0bc479cf43a25febacb8740c72826126d2 /test/files/run/t5912.scala
parent5c9b070fcf64fa17870248b7f856c4e7520f865f (diff)
parentf417380637428d8a57c38d2305c9cf09fd7d6366 (diff)
downloadscala-718b26baa6113bef9ce3ebc7c439e099615db78d.tar.gz
scala-718b26baa6113bef9ce3ebc7c439e099615db78d.tar.bz2
scala-718b26baa6113bef9ce3ebc7c439e099615db78d.zip
Merge pull request #3254 from xeno-by/topic/typeCheck
typeCheck => typecheck
Diffstat (limited to 'test/files/run/t5912.scala')
-rw-r--r--test/files/run/t5912.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/t5912.scala b/test/files/run/t5912.scala
index 9418e946d0..fc879a0537 100644
--- a/test/files/run/t5912.scala
+++ b/test/files/run/t5912.scala
@@ -3,5 +3,5 @@ object Test extends App{
import scala.reflect.runtime.{currentMirror=>cm}
import scala.tools.reflect._
import scala.reflect.runtime.universe._
- val tree = cm.mkToolBox().typeCheck( Literal(Constant("test")) )
+ val tree = cm.mkToolBox().typecheck( Literal(Constant("test")) )
}