summaryrefslogtreecommitdiff
path: root/test/pending/pos/sig/sigs.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/pos/sig/sigs.scala')
-rw-r--r--test/pending/pos/sig/sigs.scala10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/pending/pos/sig/sigs.scala b/test/pending/pos/sig/sigs.scala
deleted file mode 100644
index bdb72a09bb..0000000000
--- a/test/pending/pos/sig/sigs.scala
+++ /dev/null
@@ -1,10 +0,0 @@
-package test
-class T {
- def foo[T <: String](x: T): T = x
- def bar[T](x: T): T = x
- class Inner {
- def foo[T](x: T): T = x
- def bar[T](x: T): T = x
- }
-}
-