]> matita.cs.unibo.it Git - pkg-cerco/acc.git/blob - tests/GCCTestSuite/unused-6.c
Imported Upstream version 0.2
[pkg-cerco/acc.git] / tests / GCCTestSuite / unused-6.c
1
2 /* { dg-do compile } */
3 /* { dg-options "-O3 -Wunused-parameter" } */
4 static int t(int i) /* { dg-warning "unused parameter" "unused parameter warning" } */
5 {
6   return 0;
7 }
8 int tt()
9 {
10   return t(0);
11 }