summaryrefslogtreecommitdiff
path: root/test/Sema/nowarn-documentation-property.m
blob: af2b0629120b649b4460a8464274d51d2c60898b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// RUN: %clang_cc1 -fsyntax-only -fblocks -Wno-objc-root-class -Wdocumentation -verify %s
// expected-no-diagnostics
// rdar://13189938

@interface NSPredicate
///     The full predicate to be used for drawing objects from the store.
///     It is an AND of the parent's `prefixPredicate` (e.g., the selection for
///     volume number) and the `filterPredicate` (selection by matching the name).
///     @return `nil` if there is no search string, and no prefix.

@property(readonly) NSPredicate *andPredicate;
///     The predicate that matches the string to be searched for. This
///     @return `nil` if there is no search string.
@property(readonly) NSPredicate *filterPredicate;
@end