소스 검색

int reference test addition

Kajetan Johannes Hammerle 4 년 전
부모
커밋
260b7247a9
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      tests/struct/reference

+ 2 - 1
tests/struct/reference

@@ -1,5 +1,6 @@
 void test(int& t) {
-    t = 9;
+    t = 8;
+    t += 1;
 }
 
 void main() {