summaryrefslogtreecommitdiff
path: root/test/files/run/t7096.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/t7096.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/t7096.scala')
-rw-r--r--test/files/run/t7096.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/t7096.scala b/test/files/run/t7096.scala
index f36f99db95..e7a894fc23 100644
--- a/test/files/run/t7096.scala
+++ b/test/files/run/t7096.scala
@@ -41,7 +41,7 @@ abstract class CompilerTest extends DirectTest {
}
class SymsInPackage(pkgName: String) {
- def pkg = rootMirror.getPackage(pkgName)
+ def pkg = rootMirror.getPackage(TermName(pkgName))
def classes = allMembers(pkg) filter (_.isClass)
def modules = allMembers(pkg) filter (_.isModule)
def symbols = classes ++ terms filterNot (_ eq NoSymbol)