Polymorphism fixes #906

Merged
ghallak merged 5 commits from ghallak/fix-polymorphism into master 2022-10-04 18:40:50 +09:00
2 changed files with 6 additions and 0 deletions
Showing only changes of commit 2374b06734 - Show all commits

View File

@ -203,6 +203,7 @@ compilable_contracts() ->
"polymorphism_contract_interface_same_decl_multi_interface",
"polymorphism_contract_interface_same_name_same_type",
"polymorphism_variance_switching_chain_create",
"polymorphism_variance_switching_void_supertype",
"missing_init_fun_state_unit",
"complex_compare_leq",
"complex_compare",

View File

@ -0,0 +1,5 @@
payable contract interface SalesOffer =
entrypoint init : (address, address, int, int) => void
payable contract Test : SalesOffer =
entrypoint init(_ : address, _ : address, _ : int, _ : int) = ()