Skip to content

Commit f780750

Browse files
committed
test: add in regression test for #7445
1 parent 5c4e597 commit f780750

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

tests/pos/i7445.scala

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
// https://github.com/lampepfl/dotty/issues/7445
2+
object Main {
3+
type O1[A] = {
4+
type OutInner[X] = Unit
5+
type Out = OutInner[A]
6+
}
7+
8+
def f1: O1[Int]#Out = ???
9+
}

0 commit comments

Comments
 (0)