1 /* { dg-do compile } */
2 
3 #include <arm_sve.h>
4 
5 void unprototyped ();
6 
7 void
f(svuint8_t * ptr)8 f (svuint8_t *ptr)
9 {
10   unprototyped (*ptr); /* { dg-error {SVE type '(svuint8_t|__SVUint8_t)' cannot be passed to an unprototyped function} } */
11 }
12