mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-26 11:45:00 +03:00
12 lines
226 B
Plaintext
12 lines
226 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Fail
|
|
input_file:
|
|
- inputs/scalars.in
|
|
*/
|
|
|
|
program test.aleo {
|
|
function main(a: scalar, b: scalar) -> scalar {
|
|
return a / b; // division not supported for scalar types.
|
|
}}
|