Sign in
llvm
/
llvm-project
/
1e8286467036d8ef1a972de723f805a4981b2692
/
.
/
clang
/
test
/
PCH
/
for-loop-init-ternary-operator-statement.cpp
blob: 50819e79e6f6f7a5dff12341f54901475918e266 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -emit-pch -o %t %s
// RUN: %clang_cc1 -x ast -ast-print %t | FileCheck %s
int
f
()
{
// CHECK: for (int i = 0; x; i++) {
for
(
int
i
=
0
;
int
x
=
i
<
2
?
1
:
0
;
i
++)
{
return
x
;
}
return
0
;
}