leo/tests/compiler/records/no_owner_fail.leo
2022-07-07 16:15:11 -07:00

16 lines
280 B
Plaintext

/*
namespace: Compile
expectation: Fail
*/
// This record does not define the `owner` variable required for a record type.
record Token {
// The Aleo balance (in gates).
gates: u64,
// The token amount.
amount: u64,
}
function main() -> bool {
return true;
}