forked from digital-asset/daml
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade to ghc-lib-8.8.1.20200225 (digital-asset#4692)
- Prelude `daml 1.2` is now optional; - `HsDumpAst` now comes from `ghc-lib-parser`. changelog_begin changelog_end
- Loading branch information
1 parent
b1a3be5
commit 8c36b68
Showing
6 changed files
with
35 additions
and
12 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
daml 1.2 | ||
module DamlHasVersion(T, main) where | ||
|
||
import DA.Functor | ||
|
||
template T | ||
with | ||
p : Party | ||
where | ||
signatory p | ||
|
||
main : Scenario () | ||
main = do | ||
p <- getParty "p" | ||
void (submit p $ create T with p) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
module DamlNoVersion(T, main) where | ||
|
||
import DA.Functor | ||
|
||
template T | ||
with | ||
p : Party | ||
where | ||
signatory p | ||
|
||
main : Scenario () | ||
main = do | ||
p <- getParty "p" | ||
void (submit p $ create T with p) |
This file was deleted.
Oops, something went wrong.
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
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