2020-02-10 19:27:58 +01:00
|
|
|
(*
|
2019-11-12 08:01:18 -08:00
|
|
|
This test makes sure that the balance is accessible in PascaLIGO.
|
|
|
|
|
2020-02-10 19:27:58 +01:00
|
|
|
It is meant to detect the regression detailled in the following issue: https://gitlab.com/ligolang/ligo/issues/68
|
2019-11-12 08:01:18 -08:00
|
|
|
*)
|
|
|
|
|
2020-02-10 19:27:58 +01:00
|
|
|
type parameter is unit
|
2019-11-12 08:01:18 -08:00
|
|
|
type storage is tez
|
2020-02-10 19:27:58 +01:00
|
|
|
type return is list (operation) * storage
|
2019-11-12 08:01:18 -08:00
|
|
|
|
2020-02-10 19:27:58 +01:00
|
|
|
function main (const param : parameter; const store: storage) : return is
|
|
|
|
((nil : list (operation)), balance)
|