aboutsummaryrefslogtreecommitdiff
path: root/tests/neg/typedIdents.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/neg/typedIdents.scala')
-rw-r--r--tests/neg/typedIdents.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/neg/typedIdents.scala b/tests/neg/typedIdents.scala
index b664da42d..cb7cca743 100644
--- a/tests/neg/typedIdents.scala
+++ b/tests/neg/typedIdents.scala
@@ -18,17 +18,17 @@ package P { // `X' bound by package clause
println("L12: " + x) // `x' refers to constant `3' here
locally {
import Q.X._ // `x' and `y' bound by wildcard import
- println("L14: "+x) // reference to `x' is ambiguous here
+ println("L14: " + x) // reference to `x' is ambiguous here
import X.y // `y' bound by explicit import
println("L16: " + y) // `y' refers to `Q.X.y' here
locally {
import P.X._ // `x' and `y' bound by wildcard import
val x = "abc" // `x' bound by local definition
- println("L19: "+y) // reference to `y' is ambiguous here
+ println("L19: " + y) // reference to `y' is ambiguous here
println("L20: " + x) // `x' refers to string ``abc'' here
}
}
}
}
}
-} \ No newline at end of file
+}