This website works better with JavaScript
Home
Explore
Help
Sign In
kjhammerle
/
lonely-tiger
Watch
1
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Browse Source
int reference test addition
Kajetan Johannes Hammerle
4 years ago
parent
32a0e67f9f
commit
260b7247a9
1 changed files
with
2 additions
and
1 deletions
Split View
Show Diff Stats
2
1
tests/struct/reference
+ 2
- 1
tests/struct/reference
View File
@@ -1,5 +1,6 @@
void test(int& t) {
- t = 9;
+ t = 8;
+ t += 1;
}
void main() {