summaryrefslogtreecommitdiff
path: root/test/files/run/t6439.check
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2014-01-30 09:18:06 +0300
committerEugene Burmako <xeno.by@gmail.com>2014-02-14 23:51:21 +0100
commitf14e9fe5eda611798d95955620b3e653a2991475 (patch)
tree52ebda74e66a4e351779e1b647e3cd9b9dc56380 /test/files/run/t6439.check
parentda09331324d302d0b85a89cdcfe32ded2587b39a (diff)
downloadscala-f14e9fe5eda611798d95955620b3e653a2991475.tar.gz
scala-f14e9fe5eda611798d95955620b3e653a2991475.tar.bz2
scala-f14e9fe5eda611798d95955620b3e653a2991475.zip
deprecates String => Name implicit conversions
Given that in 2.11 we have upgraded our name construction facility from `newTxxxName` to `TxxxName`, I think it’s time we retire these implicit conversions, as they no longer save keystrokes, but continue to present ambient danger associated with implicit conversions.
Diffstat (limited to 'test/files/run/t6439.check')
-rw-r--r--test/files/run/t6439.check4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/run/t6439.check b/test/files/run/t6439.check
index f804fa75f4..f8d5b3a8cd 100644
--- a/test/files/run/t6439.check
+++ b/test/files/run/t6439.check
@@ -59,8 +59,8 @@ scala> :power
scala> object lookup {
import intp._
def apply(name: String): Symbol = types(name) orElse terms(name)
- def types(name: String): Symbol = replScope lookup (name: TypeName) orElse getClassIfDefined(name)
- def terms(name: String): Symbol = replScope lookup (name: TermName) orElse getModuleIfDefined(name)
+ def types(name: String): Symbol = replScope lookup (TypeName(name)) orElse getClassIfDefined(name)
+ def terms(name: String): Symbol = replScope lookup (TermName(name)) orElse getModuleIfDefined(name)
def types[T: global.TypeTag] : Symbol = typeOf[T].typeSymbol
def terms[T: global.TypeTag] : Symbol = typeOf[T].termSymbol
def apply[T: global.TypeTag] : Symbol = typeOf[T].typeSymbol