From 63572d22eaad4425b0e11a14555ec1fd18653648 Mon Sep 17 00:00:00 2001 From: Tmacy Date: Thu, 8 Jan 2026 17:10:32 +0800 Subject: [PATCH] add do not change comment the compiler complained that the code should not be modified --- exercises/move_semantics/move_semantics2.cairo | 1 + 1 file changed, 1 insertion(+) diff --git a/exercises/move_semantics/move_semantics2.cairo b/exercises/move_semantics/move_semantics2.cairo index 8a43a3d5f..527410c10 100644 --- a/exercises/move_semantics/move_semantics2.cairo +++ b/exercises/move_semantics/move_semantics2.cairo @@ -5,6 +5,7 @@ fn main() { let arr0 = array![]; + // Do not change the following line! let mut _arr1 = fill_arr(arr0); // Do not change the following line!