summaryrefslogtreecommitdiff
path: root/tests/strdupe.ur
blob: 2a11aa5168c31531def1afbb365ad04e43c09420 (plain)
1
2
3
4
5
6
7
8
9
10
11
val x = 0
val x = x

type t = int
type t = { A : t }

signature S = sig end
signature S = sig type t structure M : S end

structure S = struct end
structure S : S = struct type t = int structure M = S end