brintos

brintos / llvm-project-archived public Read only

0
0
Text · 243 B · 8bce3e8 Raw
12 lines · cpp
1// RUN: %clang_cc1 -emit-pch -o %t %s2// RUN: %clang_cc1 -x ast -ast-print %t | FileCheck %s3 4int f() {5  // CHECK: for (int i = 0; int x = i < 2 ? 1 : 0; i++) {6  for (int i = 0; int x = i < 2 ? 1 : 0; i++) {7    return x;8  }9  return 0;10}11 12