mirror of
https://github.com/ProvableHQ/leo.git
synced 2025-01-03 15:52:15 +03:00
15 lines
215 B
Plaintext
15 lines
215 B
Plaintext
|
/*
|
||
|
namespace: Compile
|
||
|
expectation: Fail
|
||
|
*/
|
||
|
|
||
|
// This record does define the `owner` variable but with the wrong type.
|
||
|
record Token {
|
||
|
balance: u64,
|
||
|
owner: bool,
|
||
|
}
|
||
|
|
||
|
function main() -> bool {
|
||
|
return true;
|
||
|
}
|