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