From 45bef6dc8bffffab7189756c5edcbd49304ac1b2 Mon Sep 17 00:00:00 2001 From: Felipe Pena Date: Tue, 5 Nov 2024 09:27:24 -0300 Subject: [PATCH] fix test --- vlib/v/slow_tests/inout/in_expr_callexpr.vv | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vlib/v/slow_tests/inout/in_expr_callexpr.vv b/vlib/v/slow_tests/inout/in_expr_callexpr.vv index ce2e227218e5a1..b64c098d32402e 100644 --- a/vlib/v/slow_tests/inout/in_expr_callexpr.vv +++ b/vlib/v/slow_tests/inout/in_expr_callexpr.vv @@ -1,10 +1,10 @@ fn t() bool { - println('${@FN}') + println(@FN) return true } fn t2() int { - println('${@FN}') + println(@FN) return 2 }