summaryrefslogtreecommitdiff
path: root/test/files/neg/t8002-nested-scope.scala
diff options
context:
space:
mode:
authorLukas Rytz <lukas.rytz@gmail.com>2016-12-12 15:10:01 +0100
committerGitHub <noreply@github.com>2016-12-12 15:10:01 +0100
commitd34e44e99488e4f91a677ddbc2e8ae6232273456 (patch)
tree6fa403cdd85cf273072662894a52083c3b86bc81 /test/files/neg/t8002-nested-scope.scala
parent623f0a72bad9513a154b4a6367c5e215adf769d0 (diff)
parent9502a061fa007ceb1d4e550fdb386a3645c67b1c (diff)
downloadscala-d34e44e99488e4f91a677ddbc2e8ae6232273456.tar.gz
scala-d34e44e99488e4f91a677ddbc2e8ae6232273456.tar.bz2
scala-d34e44e99488e4f91a677ddbc2e8ae6232273456.zip
Merge pull request #5550 from retronym/ticket/3772
SI-3772 Fix detection of term-owned companions
Diffstat (limited to 'test/files/neg/t8002-nested-scope.scala')
-rw-r--r--test/files/neg/t8002-nested-scope.scala12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/files/neg/t8002-nested-scope.scala b/test/files/neg/t8002-nested-scope.scala
new file mode 100644
index 0000000000..44704a12b1
--- /dev/null
+++ b/test/files/neg/t8002-nested-scope.scala
@@ -0,0 +1,12 @@
+class C {
+ def foo = {
+ class C { private def x = 0 }
+
+ {
+ val a = 0
+ object C {
+ new C().x
+ }
+ }
+ }
+}