diff options
Diffstat (limited to 'tests/225-two-structs.sml')
| -rw-r--r-- | tests/225-two-structs.sml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/225-two-structs.sml b/tests/225-two-structs.sml new file mode 100644 index 0000000..465840f --- /dev/null +++ b/tests/225-two-structs.sml @@ -0,0 +1,9 @@ +structure A = struct + val fourtyTwo = 42 +end +val B = 10 +structure X = struct + val Y = A.fourtyTwo +end + +val _ = __builtin "exit" X.Y |
