summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.74.0/tests/expected/cpp/34253-friends.cpp
blob: 58fd649aa529088fa2d05569914dea02097c97d4 (plain)
1
2
3
4
5
6
7
8
class foo
{
friend void bar();
friend void none();
template <typename T> friend vector<T> vec();


};