From 680da1afd0b8d2f4b4a6b4ec0ef3bad48d0babde Mon Sep 17 00:00:00 2001 From: Adam Chlipala Date: Fri, 31 Mar 2017 17:35:05 -0400 Subject: Fix normalization of signatures that project signatures from other modules with multi-element paths (fixes #72) --- tests/sigInModule.ur | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 tests/sigInModule.ur (limited to 'tests') diff --git a/tests/sigInModule.ur b/tests/sigInModule.ur new file mode 100644 index 00000000..efb7b0fc --- /dev/null +++ b/tests/sigInModule.ur @@ -0,0 +1,8 @@ +structure A = struct + signature S = sig + val x : int + end +end +structure B : A.S = struct + val x = 42 +end -- cgit v1.2.3