heptagon/test/good/ais.ept
Gwenaël Delaval bcba3569ed Added tests - types, constants, contracts
- ais.ept: tests inclusion of array types into structure types
- ce.ept: constant propagation
- contract.ept: contract constructs
- contract_automaton.ept: contract constructs and automata
2014-02-21 17:49:51 +01:00

9 lines
123 B
Plaintext

type int_array = int^8
type s = { t : int_array }
node f(x : int_array) returns (r : s)
let
r = { t = x };
tel