xref: /minix3/external/bsd/llvm/dist/clang/test/Frontend/warning-mapping-2.c (revision 5ba302fdeaa9e153d58b5dcaef42d660aedee92e)
1 // Check that -w has lower priority than -pedantic-errors.
2 // RUN: %clang_cc1 -verify -pedantic-errors -w %s
3 
4 void f0() { f1(); } // expected-error {{implicit declaration of function}}
5 
6