-
-
Save sim642/3d8d2dffc604c0007d93d82d57b373e0 to your computer and use it in GitHub Desktop.
Goblint basecomponents_t
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type 'a basecomponents_t = { | |
cpa: CPA.t; | |
deps: PartDeps.t; | |
priv: 'a; | |
} | |
type t = PrivD.t basecomponents_t = { | |
cpa: CPA.t; | |
deps: PartDeps.t; | |
priv: PrivD.t; | |
} | |
(* | |
77 | ..type t = PrivD.t basecomponents_t = { | |
78 | cpa: CPA.t; | |
79 | deps: PartDeps.t; | |
80 | priv: PrivD.t; | |
81 | } | |
Error: This variant or record definition does not match that of type | |
PrivD.t basecomponents_t | |
They have different arities. | |
*) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment