summaryrefslogtreecommitdiff
path: root/test/files/neg/specification-scopes/P_1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/specification-scopes/P_1.scala')
-rw-r--r--test/files/neg/specification-scopes/P_1.scala9
1 files changed, 5 insertions, 4 deletions
diff --git a/test/files/neg/specification-scopes/P_1.scala b/test/files/neg/specification-scopes/P_1.scala
index 3b11f1167d..50c306fd67 100644
--- a/test/files/neg/specification-scopes/P_1.scala
+++ b/test/files/neg/specification-scopes/P_1.scala
@@ -1,6 +1,7 @@
-package P {
- object X { val x = 1; val y = 2; }
+package p {
+ object X { val x = 1; val y = 2 }
}
-package Q {
- object X { val x = true; val y = "" }
+
+package q {
+ object X { val x = true; val y = false }
}