forked from OSchip/llvm-project
7 lines
90 B
C
7 lines
90 B
C
|
// RUN: clang %s -emit-llvm
|
||
|
|
||
|
int testBoolAssign(void) {
|
||
|
int ss;
|
||
|
if ((ss = ss && ss)) {}
|
||
|
}
|