From 3b4e5582b759a42985913588a17615ccf6f29cb1 Mon Sep 17 00:00:00 2001 From: flameyosflow Date: Fri, 19 Dec 2025 18:53:41 +0200 Subject: [PATCH] Add a comment --- tests/codegen/test_comprehensive.sui | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/codegen/test_comprehensive.sui b/tests/codegen/test_comprehensive.sui index 59556df..1df7895 100644 --- a/tests/codegen/test_comprehensive.sui +++ b/tests/codegen/test_comprehensive.sui @@ -25,7 +25,7 @@ fn main() -> int do # Test enum (stack-allocated for now) let status = Status::Ok(); - # Test array (heap-allocated) + # Test array (heap-allocated), no way to preinit an array with a length rn let arr = [1, 2, 3, 4, 5]; let first = arr[0];