leo/tests/compiler/scalar/square_root_fail.leo

10 lines
190 B
Plaintext
Raw Normal View History

2022-07-29 02:46:30 +03:00
/*
namespace: Compile
expectation: Fail
input_file:
- inputs/scalars.in
*/
function main(a: scalar) -> scalar {
return a.square_root(); // square root not supported for scalar types.
}