Fix test for global procedure initialization

This commit is contained in:
gingerBill
2025-08-08 12:49:24 +01:00
parent 78290ceef3
commit a0462aa8d7

View File

@@ -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
}