aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t4760.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t4760.scala')
-rw-r--r--tests/untried/pos/t4760.scala34
1 files changed, 34 insertions, 0 deletions
diff --git a/tests/untried/pos/t4760.scala b/tests/untried/pos/t4760.scala
new file mode 100644
index 000000000..d4407a86b
--- /dev/null
+++ b/tests/untried/pos/t4760.scala
@@ -0,0 +1,34 @@
+
+class Test {
+ // parses
+ def f1 = {
+ import scala._;
+ }
+ // b.scala:7: error: ';' expected but '}' found.
+ // }
+ // ^
+ // one error found
+ def f2 = {
+ import scala._
+ }
+ def f2b = {
+ import scala.collection.mutable.{ Map => MMap }
+ }
+ def f(): Unit = {
+ locally {
+ import scala.util.Properties.lineSeparator
+ }
+ }
+
+ // parses
+ def f3 = {
+ import scala._
+ 5
+ }
+ locally { (x: Int) =>
+ import scala.util._
+ }
+ 1 match {
+ case 1 => import scala.concurrent._
+ }
+}