13 lines · plain
1// RUN: %clang_cc1 -fsyntax-only -verify %s2 3@class NSString, NSArray;4 5@protocol ISyncSessionCallback 6- (oneway void)clientWithId:(bycopy NSString *)clientId7 canBeginSyncingPlanWithId:(bycopy NSString *)planId8 syncModes:(bycopy NSArray /* ISDSyncState */ *)syncModes9 entities:(bycopy NSArray /* ISDEntity */ *)entities10 truthPullers:(bycopy NSDictionary /* NSString -> [NSString] */ *)truthPullers; // expected-error {{expected a type}}11@end12 13