فهرست منبع

Fix test for global procedure initialization

gingerBill 1 ماه پیش
والد
کامیت
a0462aa8d7
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      tests/internal/test_global_any.odin

+ 1 - 1
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
 }