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