diff --git a/reference/Tuple/Tuple.cpp b/reference/Tuple/Tuple.cpp index 9a2f89999..17d6fd846 100644 --- a/reference/Tuple/Tuple.cpp +++ b/reference/Tuple/Tuple.cpp @@ -15,7 +15,7 @@ CONSOLE_APP_MAIN Tuple2 y = Tuple(13, "hello"); DUMP(x == y); - y.a = 13; + y = x; DUMP(x == y); int i; String s;