bcba3569ed
- 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
8 lines
123 B
Text
8 lines
123 B
Text
type int_array = int^8
|
|
type s = { t : int_array }
|
|
|
|
node f(x : int_array) returns (r : s)
|
|
let
|
|
r = { t = x };
|
|
tel
|
|
|