Mercurial > hg > CbC > CbC_gcc
annotate gcc/testsuite/gcc.dg/pr65066.c @ 111:04ced10e8804
gcc 7
author | kono |
---|---|
date | Fri, 27 Oct 2017 22:46:09 +0900 |
parents | |
children |
rev | line source |
---|---|
111 | 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 } |