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