summaryrefslogtreecommitdiff
path: root/test/files/neg/t6666.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/t6666.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/t6666.scala')
-rw-r--r--test/files/neg/t6666.scala19
1 files changed, 0 insertions, 19 deletions
diff --git a/test/files/neg/t6666.scala b/test/files/neg/t6666.scala
index d37ffaf141..19073884bd 100644
--- a/test/files/neg/t6666.scala
+++ b/test/files/neg/t6666.scala
@@ -62,13 +62,6 @@ class C4 extends C({
object Nested { def xx = x}
Nested.xx
})
-class C5 extends C({
- def x = "".toString
- val y = {
- object Nested { def xx = x}
- Nested.xx
- }
-})
// okay, for same reason as O6
class C6 extends C({
@@ -114,18 +107,6 @@ class C14(a: Any) {
}
}
-class C15(a: Any) {
- def this() = {
- this({
- def x = "".toString
- val y = {
- object Nested { def xx = x}
- Nested.xx
- }
- })
- }
-}
-
class COuter extends C({
def foo = 0
class CInner extends C({foo})