summaryrefslogtreecommitdiffstats
path: root/clang/test/Rewriter/rewrite-foreach-7.m
blob: 079825b01ea37785b736733aeae67e32ad100df7 (plain) (blame)
1
2
3
4
5
6
7
// RUN: %clang_cc1 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5  %s -o -

@class NSArray;
int main(void) {
	NSArray *foo;
	for (Class c in foo) { }
}