summaryrefslogtreecommitdiff
path: root/test/files/neg/t6666c.scala
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2013-01-24 00:35:19 +0100
committerJason Zaugg <jzaugg@gmail.com>2013-02-02 13:19:07 +0100
commit66fa1f22ac058e87350304388eca17aedc1e4b64 (patch)
treea478e541df1baf0748e43575021e18294d433247 /test/files/neg/t6666c.scala
parent4c34280e5bb3e48db35d97d890e4f5f1c5fb3a26 (diff)
downloadscala-66fa1f22ac058e87350304388eca17aedc1e4b64.tar.gz
scala-66fa1f22ac058e87350304388eca17aedc1e4b64.tar.bz2
scala-66fa1f22ac058e87350304388eca17aedc1e4b64.zip
Broader checks for poisonous this references.
Replaces more VerifyErrors with implementation restrictions.
Diffstat (limited to 'test/files/neg/t6666c.scala')
-rw-r--r--test/files/neg/t6666c.scala8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/files/neg/t6666c.scala b/test/files/neg/t6666c.scala
new file mode 100644
index 0000000000..76cc358307
--- /dev/null
+++ b/test/files/neg/t6666c.scala
@@ -0,0 +1,8 @@
+class C(a: Any)
+class D extends C({def x = 0; object X { x }})
+
+class C1(a: () => Any)
+class D1 extends C1({def x = 0; () => {object X { x }}})
+
+class C2(a: => Any)
+class D2 extends C2({def x = 0; object X { x }})