From 76da7936e5251ab71084f9b02cfdef8b249bc1e9 Mon Sep 17 00:00:00 2001 From: Christoffer Lerno Date: Tue, 14 Jan 2025 12:25:49 +0100 Subject: [PATCH] Fix issue with inferred vector output to JSON. #1839 --- src/compiler/json_output.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/json_output.c b/src/compiler/json_output.c index fc3c5b6c9..49213c180 100644 --- a/src/compiler/json_output.c +++ b/src/compiler/json_output.c @@ -162,7 +162,7 @@ void print_type(FILE *file, TypeInfo *type) break; case TYPE_INFO_INFERRED_VECTOR: print_type(file, type->array.base); - fputs("[<>]", file); + fputs("[<*>]", file); break; case TYPE_INFO_SLICE: print_type(file, type->array.base);