blob: 59a8ec55c61e6c9dd02c72dcdea23f85ad06c3c9 [file] [log] [blame]
/* 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" } */
/* { dg-begin-multiline-output "" }
return ssacnf (p, "%d", &i);
^~~~~~
{ dg-end-multiline-output "" } */
// { dg-message "10: suggested alternative: 'sscafn'" "" { target *-*-* } 12 }
/* { 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" } */
/* { dg-begin-multiline-output "" }
return sacnf ("%d", &i);
^~~~~
{ dg-end-multiline-output "" } */
// { dg-message "10: suggested alternative: 'scanf'" "" { target *-*-* } 32 }
/* { dg-begin-multiline-output "" }
return sacnf ("%d", &i);
^~~~~
scanf
{ dg-end-multiline-output "" } */
}