[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / Sema / nowarn-documentation-property.m
blob233af21e87798ffa3b76be6a50e5a143a60208f5
1 // RUN: %clang_cc1 -fsyntax-only -fblocks -Wno-objc-root-class -Wdocumentation -verify %s
2 // expected-no-diagnostics
4 @interface NSPredicate
5 ///     The full predicate to be used for drawing objects from the store.
6 ///     It is an AND of the parent's `prefixPredicate` (e.g., the selection for
7 ///     volume number) and the `filterPredicate` (selection by matching the name).
8 ///     @return `nil` if there is no search string, and no prefix.
10 @property(readonly) NSPredicate *andPredicate;
11 ///     The predicate that matches the string to be searched for. This
12 ///     @return `nil` if there is no search string.
13 @property(readonly) NSPredicate *filterPredicate;
14 @end