aboutsummaryrefslogtreecommitdiff
path: root/tests/lvalue-conversion.c
blob: 6bbc326e925116ee85de7df3d3a117558e4805be (plain)
1
2
3
4
5
6
void g();
void f(void) {
	static const unsigned char c = 0;
	g(c);
	g(~c);
}