aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/format/ext-4.c
blob: c11c0ada7de20635134c8df53f7c902f74d19d44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* Test for scanf formats.  %a extensions.  */
/* Origin: Joseph Myers <jsm28@cam.ac.uk> */
/* { dg-do compile } */
/* { dg-options "-std=gnu89 -Wformat" } */

#include "format.h"

void
foo (char **sp, wchar_t **lsp)
{
  /* %a formats for allocation, only recognized in C90 mode, are a
     GNU extension.  Followed by other characters, %a is not treated
     specially.
  */
  scanf ("%as", sp);
  scanf ("%aS", lsp);
  scanf ("%a[bcd]", sp);
}