aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/t4202.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/t4202.scala')
-rw-r--r--tests/pending/pos/t4202.scala18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/pending/pos/t4202.scala b/tests/pending/pos/t4202.scala
deleted file mode 100644
index b2a0c0120..000000000
--- a/tests/pending/pos/t4202.scala
+++ /dev/null
@@ -1,18 +0,0 @@
-object t4202_1 {
- () => {
- trait T {
- def t = ()
- }
- }
-}
-
-object t4202_2 {
- () => {
- trait T {
- def t = ()
- }
- object T2 extends T {
- t
- }
- }
-}