summaryrefslogtreecommitdiff
path: root/test/files/run/t5704.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t5704.scala')
-rw-r--r--test/files/run/t5704.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/t5704.scala b/test/files/run/t5704.scala
index ddcbcc27b3..495a82e4f0 100644
--- a/test/files/run/t5704.scala
+++ b/test/files/run/t5704.scala
@@ -8,7 +8,7 @@ object Test extends App {
def findUserByName( name:String ) = {
val tree = reify{ "test" == name }.tree
val toolbox = cm.mkToolBox()
- toolbox.typeCheck(tree) match{
+ toolbox.typecheck(tree) match{
case Apply(Select(lhs,op),rhs::Nil) =>
println(rhs.tpe)
}