aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/failure/circular_subtyping2.v
blob: f6de884db8aabcbe4723e02b0f96a503edc4a73e (plain)
1
2
3
4
5
6
7
8
(*subtyping verification in presence of  pseudo-circularity at functor application *)
Module Type S. End S.
Module Type T. Declare Module M:S. End T.
Module N:S. End N.

Module F (X:S) (Y:T with Module M:=X). End F.

Fail Module G := F N N.