summaryrefslogtreecommitdiff
path: root/test/files/pos/t8002-nested-scope.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t8002-nested-scope.scala')
-rw-r--r--test/files/pos/t8002-nested-scope.scala20
1 files changed, 0 insertions, 20 deletions
diff --git a/test/files/pos/t8002-nested-scope.scala b/test/files/pos/t8002-nested-scope.scala
deleted file mode 100644
index 8ce809e556..0000000000
--- a/test/files/pos/t8002-nested-scope.scala
+++ /dev/null
@@ -1,20 +0,0 @@
-// This test serves to capture the status quo, but should really
-// emit an accessibility error.
-
-// `Namers#companionSymbolOf` seems too lenient, and currently doesn't
-// implement the same-scope checks mentioned:
-//
-// https://github.com/scala/scala/pull/2816#issuecomment-22555206
-//
-class C {
- def foo = {
- class C { private def x = 0 }
-
- {
- val a = 0
- object C {
- new C().x
- }
- }
- }
-}