1 /* PR sanitizer/65400 */
2 /* { dg-do compile } */
3 
4 extern void foo (int *);
5 
6 void
baz4(int * p)7 baz4 (int *p)
8 {
9   foo (p);
10 }
11