summaryrefslogtreecommitdiff
path: root/test/files/run/existentials-in-compiler.scala
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/existentials-in-compiler.scala
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/existentials-in-compiler.scala')
-rw-r--r--test/files/run/existentials-in-compiler.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/existentials-in-compiler.scala b/test/files/run/existentials-in-compiler.scala
index f5a0aa98d0..d019d56b42 100644
--- a/test/files/run/existentials-in-compiler.scala
+++ b/test/files/run/existentials-in-compiler.scala
@@ -75,7 +75,7 @@ package extest {
"""
override def check(source: String, unit: global.CompilationUnit) {
- getPackage("extest").moduleClass.info.decls.toList.filter(_.isType).map(_.initialize).sortBy(_.name.toString) foreach { clazz =>
+ getPackage(TermName("extest")).moduleClass.info.decls.toList.filter(_.isType).map(_.initialize).sortBy(_.name.toString) foreach { clazz =>
exitingTyper {
clazz.info
println(clazz.defString)