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