summaryrefslogtreecommitdiffstats
path: root/testsuite/tests/typing-modules/printing.ml.reference
blob: c5a9a773db91a73e8922d90f1dd151543e17a2ad (plain)
1
2
3
4
5
6
7
8
9
10

#               module type S =
  sig
    class type c = object method m : int end
    module M : sig class type d = c end
  end
# module F : functor (X : S) -> sig class type d = X.c end
#       module M : sig module N : sig val x : int end end
# module M : sig module N : sig ... end end
#