summaryrefslogtreecommitdiff
path: root/tests/include.ur
blob: 6661d0f94734f579f03be776614e1a4c1ac4af74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
signature S = sig
        type t
        val x : t
end

signature S' = sig
        include S
        val y : t
end

signature S'' = sig
        type u
        include S' where type t = int
        type v
end