aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgingerBill <gingerBill@users.noreply.github.com>2025-08-08 12:49:24 +0100
committergingerBill <gingerBill@users.noreply.github.com>2025-08-08 12:49:24 +0100
commita0462aa8d7bd622d70d8c0d4a25dddbe081dc86d (patch)
tree6090711a8ed030688ae4ada7a80227c48ca1e626
parent78290ceef38e7fff9b605c168eed5f24d65895c2 (diff)
Fix test for global procedure initialization
-rw-r--r--tests/internal/test_global_any.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/internal/test_global_any.odin b/tests/internal/test_global_any.odin
index 73b70e0a4..850884912 100644
--- a/tests/internal/test_global_any.odin
+++ b/tests/internal/test_global_any.odin
@@ -3,7 +3,7 @@ package test_internal
@(private="file")
global_any_from_proc: any = from_proc()
-from_proc :: proc() -> f32 {
+from_proc :: proc "contextless" () -> f32 {
return 1.1
}