]> git.proxmox.com Git - rustc.git/blame - src/llvm/tools/clang/test/CodeGen/boolassign.c
Imported Upstream version 0.6
[rustc.git] / src / llvm / tools / clang / test / CodeGen / boolassign.c
CommitLineData
223e47cc
LB
1// RUN: %clang_cc1 %s -emit-llvm -o %t
2
3int testBoolAssign(void) {
4 int ss;
5 if ((ss = ss && ss)) {}
6 return 1;
7}