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];