summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/30742-delete.cpp
blob: c33aa6823de66a5b6e5bd69aee93b605b592d470 (plain)
1
2
3
4
5
6
7
8
9
10

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

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