From 5d31f28bedc3d045f01f390245b5afbbb316e414 Mon Sep 17 00:00:00 2001 From: Zuhaitz Méndez Fernández de Aránguiz Date: Thu, 22 Jan 2026 22:56:40 +0000 Subject: Fix for #91 --- tests/features/_fstring_mod.zc | 4 ++++ tests/features/fstring_mod.zc | 4 ---- tests/features/test_fstring.zc | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) create mode 100644 tests/features/_fstring_mod.zc delete mode 100644 tests/features/fstring_mod.zc (limited to 'tests/features') diff --git a/tests/features/_fstring_mod.zc b/tests/features/_fstring_mod.zc new file mode 100644 index 0000000..78b16ef --- /dev/null +++ b/tests/features/_fstring_mod.zc @@ -0,0 +1,4 @@ + +fn get_val() -> int { + return 42; +} diff --git a/tests/features/fstring_mod.zc b/tests/features/fstring_mod.zc deleted file mode 100644 index 78b16ef..0000000 --- a/tests/features/fstring_mod.zc +++ /dev/null @@ -1,4 +0,0 @@ - -fn get_val() -> int { - return 42; -} diff --git a/tests/features/test_fstring.zc b/tests/features/test_fstring.zc index 3ef64a7..b2a8f36 100644 --- a/tests/features/test_fstring.zc +++ b/tests/features/test_fstring.zc @@ -1,4 +1,4 @@ -import "tests/features/fstring_mod.zc" as Mod; +import "tests/features/_fstring_mod.zc" as Mod; test "alias namespace fstring" { // Tests that {Mod::get_val()} is parsed correctly (Mod_get_val) -- cgit v1.2.3