summaryrefslogtreecommitdiff
path: root/testsuite/tests/backpack/reexport/bkpreex03.bkp
blob: 69c2f55fce2d492c7d645c347c7dcad5d865cccc (plain)
1
2
3
4
5
6
7
8
9
unit p where
    module M1 where
        data M = M
    module M2 where
        data M = M
    signature A(M) where
        import M1
    signature A(M) where
        import M2