summaryrefslogtreecommitdiffstats
path: root/tests/225-two-structs.sml
blob: 465840feb3d27d4b3b2e6aa2b2efab66627c6c2f (plain) (blame)
1
2
3
4
5
6
7
8
9
structure A = struct
  val fourtyTwo = 42
end
val B = 10
structure X = struct
  val Y = A.fourtyTwo
end

val _ = __builtin "exit" X.Y