leo/tests/compiler/group/mult_by_scalar.leo

10 lines
141 B
Plaintext
Raw Normal View History

2022-05-06 01:44:33 +03:00
/*
namespace: Compile
expectation: Pass
2022-08-02 01:33:26 +03:00
input_file: inputs/point.in
2022-05-06 01:44:33 +03:00
*/
@program
2022-05-06 01:44:33 +03:00
function main(a: group) -> group {
2022-05-13 22:33:35 +03:00
return 1scalar * a;
2022-05-06 01:44:33 +03:00
}