xref: /aosp_15_r20/external/clang/test/Rewriter/rewrite-foreach-7.m (revision 67e74705e28f6214e480b399dd47ea732279e315)
1// RUN: %clang_cc1 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5  %s -o -
2
3@class NSArray;
4int main() {
5	NSArray *foo;
6	for (Class c in foo) { }
7}
8