This website works better with JavaScript
Strona główna
Odkrywaj
Pomoc
Zaloguj się
kjhammerle
/
lonely-tiger
Obserwuj
1
Polub
0
Forkuj
0
Pliki
Problemy
0
Oczekujące zmiany
0
Wiki
Przeglądaj źródła
int reference test addition
Kajetan Johannes Hammerle
4 lat temu
rodzic
32a0e67f9f
commit
260b7247a9
1 zmienionych plików
z
2 dodań
i
1 usunięć
Widok podzielony
Pokaż statystyki zmian
2
1
tests/struct/reference
+ 2
- 1
tests/struct/reference
Wyświetl plik
@@ -1,5 +1,6 @@
void test(int& t) {
- t = 9;
+ t = 8;
+ t += 1;
}
void main() {