aboutsummaryrefslogtreecommitdiff
path: root/test/const-array.c
blob: c2bfe46c2aeb123d2e59ea89592218af406af16c (plain)
1
2
3
4
5
/* C11 6.7.3p9 - type qualifiers on array type qualify the element type */
typedef int T[2];
void f(const T x) {
	x = 0;
}