Readd tests

This commit is contained in:
radrow
2022-07-03 19:17:02 +02:00
parent 89afa9ec8f
commit 0bc9cfb957
3 changed files with 78 additions and 3 deletions
+9 -2
View File
@@ -1,5 +1,12 @@
// This is a custom test file if you need to run a compiler without
// changing aeso_compiler_tests.erl
contract C =
entrypoint test() = [1..5]
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)