summaryrefslogtreecommitdiff
path: root/test/files/pos/t3880.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t3880.scala')
-rw-r--r--test/files/pos/t3880.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/t3880.scala b/test/files/pos/t3880.scala
index b6f06c43a3..cd5f3c0125 100644
--- a/test/files/pos/t3880.scala
+++ b/test/files/pos/t3880.scala
@@ -1,6 +1,6 @@
abstract class Bar[+B] {
}
-abstract class C1[+B] extends Bar[B] {
+abstract class C1[+B] extends Bar[B] {
private[this] def g(x: C1[B]): Unit = ()
// this method is fine: notice that it allows the call to g,