summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/input/cpp/delete.cpp
blob: fff916e3f9c0103d6e0bc70da39db17f94732019 (plain)
1
2
3
4
5
6
7
8
9
10

void x(int **d) {
delete *d;
}

void x(int& d) {
delete &d;
}