[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / CodeGenObjCXX / foreach-statement.mm
blobfaa14e4bbcc02553c4ef87df9666ce7cb8fd4540
1 // RUN: %clang_cc1 %s -triple=x86_64-apple-darwin10 -emit-llvm -o - | FileCheck %s
3 // CHECK: call void @llvm.memset
5 int main() {
6     id foo;
7     for (id a in foo) {
8     }