leo/tests/compiler/function/repeated.leo

16 lines
197 B
Plaintext
Raw Normal View History

2021-05-05 18:29:44 +03:00
/*
namespace: Compile
expectation: Pass
input_file: input/dummy.in
*/
2020-07-17 06:47:47 +03:00
function one() -> bool {
return true;
}
2021-05-05 18:29:44 +03:00
function main() -> bool {
const a = one() && one();
2020-07-30 22:10:33 +03:00
2021-05-05 18:29:44 +03:00
return a == true;
}