[Heikki Kultala] This patch contains the ABI changes for the TCE target.
[clang.git] / test / SemaObjC / invalid-typename.m
blob50dd188738222df977f708d5ff17a938301293b3
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
3 @class NSString, NSArray;
5 @protocol ISyncSessionCallback 
6 - (oneway void)clientWithId:(bycopy NSString *)clientId
7                    canBeginSyncingPlanWithId:(bycopy NSString *)planId
8                    syncModes:(bycopy NSArray /* ISDSyncState */ *)syncModes
9                    entities:(bycopy NSArray /* ISDEntity */ *)entities
10                    truthPullers:(bycopy NSDictionary /* NSString -> [NSString] */ *)truthPullers; // expected-error{{expected ')'}} expected-note {{to match this '('}}
11 @end