mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-22 09:41:37 +03:00
16 lines
280 B
Plaintext
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;
|
|
} |