blob: 0e8cbf45242781a731337bc7260599670cf402c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
T9204.hs:6:1: error:
Type constructor ‘D’ has conflicting definitions in the module
and its hs-boot file
Main module: type role D phantom
type D :: * -> *
data D a
Boot file: type D :: * -> *
data D a
The roles do not match.
Roles on abstract types default to ‘representational’ in boot files.
|