aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/return_thistype.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/return_thistype.scala')
-rw-r--r--tests/pending/pos/return_thistype.scala8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/pending/pos/return_thistype.scala b/tests/pending/pos/return_thistype.scala
deleted file mode 100644
index c0736c0ad..000000000
--- a/tests/pending/pos/return_thistype.scala
+++ /dev/null
@@ -1,8 +0,0 @@
-// tests transformation of return type in typedTypeApply (see also tcpoly_gm.scala)
-class As {
- class A {
- def foo: A.this.type = bar.asInstanceOf[A.this.type]
- def foo2: this.type = bar.asInstanceOf[this.type]
- def bar: A = null
- }
-}