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