summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/input/c/sp_embed_comment.c
blob: 88a54dff9648abe9d076ce5e6ba993e189e573bf (plain)
1
2
3
4
5
6
7
8
void f();
void g(int);
void h()
{
f(/*foo*/);
g(42/*foo*/);
g(/*foo*/42);
}