All checks were successful
Sophia Tests / tests (push) Successful in 48m54s
A few references to oracles still remain, but they have been removed as a feature, at least. Reviewed-on: #985 Reviewed-by: Ulf Wiger <ulfwiger@qpq.swiss> Co-authored-by: Craig Everett <zxq9@zxq9.com> Co-committed-by: Craig Everett <zxq9@zxq9.com>
13 lines
294 B
Plaintext
13 lines
294 B
Plaintext
// This is a custom test file if you need to run a compiler without
|
|
// changing so_compiler_tests.erl
|
|
|
|
include "List.aes"
|
|
|
|
contract IntegerHolder =
|
|
type state = int
|
|
entrypoint init(x) = x
|
|
entrypoint get() = state
|
|
|
|
main contract Test =
|
|
stateful entrypoint f(c) = Chain.clone(ref=c, 123)
|