summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.brendan/code-gen2.C
blob: 730f0f91fdad10190659f2470b42d7400c3e34c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// { dg-do run  }
// GROUPS passed code-generation
// Check that declarations with initializations are executed
// correctly.

extern "C" int printf (const char *, ...); 

int main ()
{
	char buff[40] ;
	char *tmp = &buff[0];	// also fails for char *tmp = buff;

	if ((__SIZE_TYPE__) tmp != (__SIZE_TYPE__) &buff[0])
	  { printf ("FAIL\n"); return 1; }
	else
	  printf ("PASS\n");

	return 0;
}