aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/format-string-percentm.c
blob: f2e9dd81bab34701ad8febc93d6602e42ce17b58 (plain) (blame)
1
2
3
4
5
6
// RUN: %clang_cc1 -fsyntax-only -verify %s -triple i686-pc-linux-gnu

int printf(char const*,...);
void percentm(void) {
  printf("%m");
}