1 /* { dg-do compile } */ 2 3 void f () __attribute__ ((__malloc__)); /* { dg-warning "ignored" } */ 4 main()5 int main () 6 { 7 /* This used to cause an ICE. */ 8 f (); 9 } 10 11