diff options
author | Ori Bernstein <ori@eigenstate.org> | 2018-06-09 14:08:28 -0700 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2018-06-09 14:08:28 -0700 |
commit | aed73f868fbd7b9774c25031893adda907a9558c (patch) | |
tree | c08757ec8276112c94eb84ccb642e638c949cbfb /test/fncast.myr | |
parent | 84393ead97a2e189b6057420ad7d94170b9aa00f (diff) | |
download | mc-aed73f868fbd7b9774c25031893adda907a9558c.tar.gz |
Fix test:wqs
Diffstat (limited to 'test/fncast.myr')
-rw-r--r-- | test/fncast.myr | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/fncast.myr b/test/fncast.myr index 6ea40a6..ed17486 100644 --- a/test/fncast.myr +++ b/test/fncast.myr @@ -6,11 +6,11 @@ const main = { fn = { } + ptr = (fn : byte#) + ptr = (envfn : byte#) envfn = { ptr = ptr } - ptr = (fn : byte#) - ptr = (envfn : byte#) std.put("ok\n") } |