repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
warn
/
format3.C
blob
0bdaaee1772452d86665f6990c56e88fcd490fe5
1
// PR c++/13070
2
// { dg-do compile }
3
// { dg-options "-Wformat" }
4
5
extern "C" int printf (const char*, ...);
6
7
int main()
8
{
9
printf("%d\n", 1, 1); // { dg-warning "too many" "printf warning" }
10
return 0;
11
}
12