From 2f09f051eb715b8847c3cadf20e48f9af85acfa5 Mon Sep 17 00:00:00 2001 From: Swastik Date: Wed, 26 Jun 2024 02:11:39 +0530 Subject: [PATCH] fix test --- vlib/v/parser/tests/fn_type_del_same_param_type.out | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/v/parser/tests/fn_type_del_same_param_type.out b/vlib/v/parser/tests/fn_type_del_same_param_type.out index de785858452167..f0e5c17aa401cf 100644 --- a/vlib/v/parser/tests/fn_type_del_same_param_type.out +++ b/vlib/v/parser/tests/fn_type_del_same_param_type.out @@ -1,3 +1,3 @@ -vlib/v/parser/tests/fn_type_del_same_param_type.vv:1:19: error: `FnType` cannot be a return type as it references the fntype +vlib/v/parser/tests/fn_type_del_same_param_type.vv:1:19: error: `FnType` cannot be a parameter as it references the fntype 1 | type FnType = fn (FnType) string | ~~~~~~