aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t2545.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t2545.scala')
-rwxr-xr-xtests/untried/pos/t2545.scala10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/untried/pos/t2545.scala b/tests/untried/pos/t2545.scala
deleted file mode 100755
index 6ad994223..000000000
--- a/tests/untried/pos/t2545.scala
+++ /dev/null
@@ -1,10 +0,0 @@
-trait Frog[T] {
- def hello: T
- def size: Int
- }
-
- trait OnlyWithFrogs {
- self: Frog[_] =>
-
- def sizeStr = size.toString
- }