1
0
Fork 0
mirror of synced 2025-09-24 04:40:05 +00:00
ZoKrates/zokrates_cli/examples/imports/inliner_state.zok
2022-04-06 20:23:58 +02:00

14 lines
320 B
Text

from "./inliner_state_aux" import main as test;
// we check that the constant inliner does not get corrupted
// notice that the constant generic has the same name as the constant `K`
// defined in the `test1.zok` module
def tmp<K>() {
u32 junk = test() + K;
return;
}
// dummy main
def main() {
return;
}