aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pr15443-1.c
blob: d6106b5b353688888b51efbde9369ed2f516c4c0 (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-do compile } */

void f () __attribute__ ((__malloc__)); /* { dg-warning "ignored" } */

int main ()
{
	/* This used to cause an ICE.  */
	f ();
}