summaryrefslogtreecommitdiff
path: root/test/files/pos/SI-5788.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/SI-5788.scala')
-rw-r--r--test/files/pos/SI-5788.scala4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/files/pos/SI-5788.scala b/test/files/pos/SI-5788.scala
new file mode 100644
index 0000000000..93b84bde87
--- /dev/null
+++ b/test/files/pos/SI-5788.scala
@@ -0,0 +1,4 @@
+trait Test {
+ trait B[T]
+ private final def grow[T](): B[T] = grow[T]()
+}