summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/typechecker/Namers.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/compiler/scala/tools/nsc/typechecker/Namers.scala')
-rw-r--r--src/compiler/scala/tools/nsc/typechecker/Namers.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/typechecker/Namers.scala b/src/compiler/scala/tools/nsc/typechecker/Namers.scala
index e43ddddea9..117e6a79e7 100644
--- a/src/compiler/scala/tools/nsc/typechecker/Namers.scala
+++ b/src/compiler/scala/tools/nsc/typechecker/Namers.scala
@@ -420,7 +420,7 @@ trait Namers { self: Analyzer =>
tp match {
case TypeBounds(lo, hi) =>
// check that lower bound is not an F-bound
- for (val t <- lo) {
+ for (t <- lo) {
t match {
case TypeRef(_, sym, _) => sym.initialize
case _ =>