summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/conv3.C
blob: 7690f56ee94fbbdf1ddd0cd1e434b65917b3822c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Build don't link:

// submitted by David C Binderman <dcb@pncl.co.uk>

typedef const int ci;
typedef ci aci[ 10];
aci var = { 2, 3, 5, 7, 11, 13 };

void
f()
{
	int * ip = var;	// ERROR - requires const_cast
}