mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-28 12:45:26 +03:00
17 lines
275 B
Plaintext
17 lines
275 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Fail
|
|
*/
|
|
|
|
program test.aleo {
|
|
// This record does define the `owner` variable but with the wrong type.
|
|
record Token {
|
|
gates: u64,
|
|
owner: bool,
|
|
}
|
|
|
|
function main() -> bool {
|
|
return true;
|
|
}
|
|
}
|