1 // RUN: clang-cc %s -emit-llvm -o %t
2 
3 int testBoolAssign(void) {
4   int ss;
5   if ((ss = ss && ss)) {}
6   return 1;
7 }
8