summaryrefslogtreecommitdiff
path: root/test/files/run/no-pickle-skolems/Test_2.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/no-pickle-skolems/Test_2.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/no-pickle-skolems/Test_2.scala')
-rw-r--r--test/files/run/no-pickle-skolems/Test_2.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/no-pickle-skolems/Test_2.scala b/test/files/run/no-pickle-skolems/Test_2.scala
index 8fd6016aea..3293dda66d 100644
--- a/test/files/run/no-pickle-skolems/Test_2.scala
+++ b/test/files/run/no-pickle-skolems/Test_2.scala
@@ -32,7 +32,7 @@ object Test {
}
def main(args: Array[String]): Unit = {
- val syms = collectSymbols[s.Bar]("to", "CC")
+ val syms = collectSymbols[s.Bar](TermName("to"), "CC")
assert(syms.size == 1, syms)
println("OK!")
}