summaryrefslogtreecommitdiff
path: root/test/files/pos/t3417.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t3417.scala')
-rw-r--r--test/files/pos/t3417.scala11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/files/pos/t3417.scala b/test/files/pos/t3417.scala
deleted file mode 100644
index d2de1608aa..0000000000
--- a/test/files/pos/t3417.scala
+++ /dev/null
@@ -1,11 +0,0 @@
-trait X extends NotNull {
- def foo = 1
-}
-
-trait Y extends Object with NotNull {
- def bar = 1
-}
-
-class Z extends NotNull
-
-class W extends Object with NotNull