summaryrefslogtreecommitdiff
path: root/test/files/run/showraw_tree_types_typed.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/showraw_tree_types_typed.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/showraw_tree_types_typed.scala')
-rw-r--r--test/files/run/showraw_tree_types_typed.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/run/showraw_tree_types_typed.scala b/test/files/run/showraw_tree_types_typed.scala
index d7ccc84ea3..3dd696c77e 100644
--- a/test/files/run/showraw_tree_types_typed.scala
+++ b/test/files/run/showraw_tree_types_typed.scala
@@ -5,6 +5,6 @@ object Test extends App {
val tb = runtimeMirror(getClass.getClassLoader).mkToolBox()
val tree1 = reify(new collection.immutable.HashMap[String, String])
val tree2 = reify(new collection.mutable.HashMap[String, String])
- println(showRaw(tb.typeCheck(tree1.tree), printTypes = true))
- println(showRaw(tb.typeCheck(tree2.tree), printTypes = true))
+ println(showRaw(tb.typecheck(tree1.tree), printTypes = true))
+ println(showRaw(tb.typecheck(tree2.tree), printTypes = true))
} \ No newline at end of file