xref: /llvm-project/clang/test/Sema/nowarn-documentation-property.m (revision 0f1c1be1968076d6f96f8a7bcc4a15cf195ecd97)
1// RUN: %clang_cc1 -fsyntax-only -fblocks -Wno-objc-root-class -Wdocumentation -verify %s
2// expected-no-diagnostics
3
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.
9
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
15