leo/tests/compiler/import/basic.leo

11 lines
184 B
Plaintext
Raw Normal View History

// namespace: Compile
// expectation: Pass
// input_file: input/dummy.in
// cwd: imports
2021-05-05 19:31:25 +03:00
2020-08-15 11:58:33 +03:00
import test-import.foo;
function main(y: bool) -> bool {
return foo() == 1u32 == true;
2021-05-05 19:31:25 +03:00
}