summaryrefslogtreecommitdiff
path: root/tests/sig_wild.ur
blob: 3f7147725a85fc4f408923988416d3cb033a9f70 (plain)
1
2
3
4
5
6
7
8
9
signature S = sig
        type t
        val x : t
end

structure M : S = struct
        type t = _
        val x = 0
end