diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-08-08 12:49:24 +0100 |
|---|---|---|
| committer | gingerBill <gingerBill@users.noreply.github.com> | 2025-08-08 12:49:24 +0100 |
| commit | a0462aa8d7bd622d70d8c0d4a25dddbe081dc86d (patch) | |
| tree | 6090711a8ed030688ae4ada7a80227c48ca1e626 | |
| parent | 78290ceef38e7fff9b605c168eed5f24d65895c2 (diff) | |
Fix test for global procedure initialization
| -rw-r--r-- | tests/internal/test_global_any.odin | 2 |
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 } |