ols icon indicating copy to clipboard operation
ols copied to clipboard

ols times out when incorrectly specifying array type (e.g. `int[]` instead of `[]int`)

Open kapoko opened this issue 1 year ago • 0 comments

When incorrectly specifying an array type ols times out.

test_proc :: proc(arg: int[]) {}

Expected behaviour

Compiler gives the following output:

test_proc :: proc(arg: int[]) {
                       ^~~~^
Suggestion: Did you mean '[]int'?

Instead I get timeout from ols (when formatting).

Thanks for the great software!

kapoko avatar Apr 29 '24 07:04 kapoko