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