comparison gcc/testsuite/gcc.dg/pr65066.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 /* PR c/65066 */
2 /* { dg-do compile } */
3 /* { dg-options "-Wformat -Wformat-signedness" } */
4
5 extern int sscanf (const char *restrict, const char *restrict, ...);
6 int *a;
7
8 void
9 foo ()
10 {
11 sscanf (0, "0x%x #", a); /* { dg-warning "expects argument of type" } */
12 }