mirror of git://gcc.gnu.org/git/gcc.git
34 lines
869 B
C
34 lines
869 B
C
/* PR c/71858 */
|
|
/* Make sure anticipated builtins are not considered before they are declared. */
|
|
/* { dg-do compile } */
|
|
/* { dg-options "-fdiagnostics-show-caret" } */
|
|
|
|
int sscafn (const char *, const char *, ...);
|
|
|
|
int
|
|
test_1 (const char *p)
|
|
{
|
|
int i;
|
|
return ssacnf (p, "%d", &i); /* { dg-error "10: .ssacnf. was not declared in this scope; did you mean 'sscafn'\\?" } */
|
|
/* { dg-begin-multiline-output "" }
|
|
return ssacnf (p, "%d", &i);
|
|
^~~~~~
|
|
sscafn
|
|
{ dg-end-multiline-output "" } */
|
|
}
|
|
|
|
int scafn (const char *, ...);
|
|
int scanf (const char *, ...);
|
|
|
|
int
|
|
test_2 (void)
|
|
{
|
|
int i;
|
|
return sacnf ("%d", &i); /* { dg-error "10: .sacnf. was not declared in this scope; did you mean 'scanf'\\?" } */
|
|
/* { dg-begin-multiline-output "" }
|
|
return sacnf ("%d", &i);
|
|
^~~~~
|
|
scanf
|
|
{ dg-end-multiline-output "" } */
|
|
}
|