-
Notifications
You must be signed in to change notification settings - Fork 205
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add serializability check for interface payloads in Haskell (#12560)
* Add serializability check for interface payloads in Haskell changelog_begin changelog_end * . changelog_begin changelog_end * . changelog_begin changelog_end * cleanup changelog_begin changelog_end * . changelog_begin changelog_end
- Loading branch information
1 parent
aced78f
commit ce06eb0
Showing
4 changed files
with
44 additions
and
9 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
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
10 changes: 10 additions & 0 deletions
10
compiler/damlc/tests/daml-test-files/InterfaceSerializabilityPayload.daml
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,10 @@ | ||
-- @SINCE-LF-FEATURE DAML_INTERFACE | ||
-- @ERROR expected serializable type | ||
module InterfaceSerializabilityPayload where | ||
|
||
-- Test that the interface serializability payload itself is not serializable. | ||
interface Gettable where | ||
nonconsuming choice Get : Gettable | ||
with anyActor : Party | ||
controller anyActor | ||
do return this |