blob: 6cf12702b2332a491af6bcfca390aca0e860aa42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
unit q where
signature A (module N) where
import qualified Data.Bool as N
unit p where
dependency signature q[A=<A>]
signature A (module A, module Data.Word) where
import Data.Word
module M where
import qualified A
x = A.otherwise
type T = A.Word
|