default until we provide a work-around for warning
suppression.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@205066
91177308-0d34-0410-b5e6-
96231b3b80d8
def warning_multiple_selectors: Warning<
"several methods with selector %0 of mismatched types are found "
"for the @selector expression">,
- InGroup<SelectorTypeMismatch>;
+ InGroup<SelectorTypeMismatch>, DefaultIgnore;
// C++ declarations
def err_static_assert_expression_is_not_constant : Error<
"static_assert expression is not an integral constant expression">;
-// RUN: %clang_cc1 -verify %s
+// RUN: %clang_cc1 -Wselector-type-mismatch -verify %s
@interface I
- (id) compare: (char) arg1; // expected-note {{method 'compare:' declared here}}