warning-mapping-2.c revision be1aa410274b28fc143c47c814f07c989f4534d6
1// Check that -w has lower priority than -pedantic-errors.
2// RUN: %clang_cc1 -verify -pedantic-errors -w %s
3
4void f0() { f1(); } // expected-error {{implicit declaration of function}}
5
6