leo/tests/compiler/function/duplicate_definition_fail.leo

14 lines
146 B
Plaintext
Raw Normal View History

2021-05-05 18:29:44 +03:00
/*
namespace: Compile
expectation: Fail
*/
2021-04-07 20:20:58 +03:00
function main() {
console.log("{}", 1u8);
}
function main() {
console.log("{}", 2u8);
2021-05-05 18:29:44 +03:00
}