mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-26 03:33:44 +03:00
17 lines
233 B
Plaintext
17 lines
233 B
Plaintext
/*
|
|
namespace: Parse
|
|
expectation: Fail
|
|
*/
|
|
|
|
program test.aleo {
|
|
mapping u8: u8 => u8;
|
|
|
|
mapping foo: bar -> baz;
|
|
|
|
mapping foo: (bar => baz);
|
|
|
|
mapping foo: [bar -> baz];
|
|
|
|
mapping foo bar => baz;
|
|
}
|