warning-mapping-2.c 231 B

1234567
  1. // Check that -w takes precedence over -pedantic-errors.
  2. // RUN: %clang_cc1 -verify -pedantic-errors -w %s
  3. // Expect *not* to see a diagnostic for "implicit declaration of function"
  4. // expected-no-diagnostics
  5. void f0() { f1(); }