1 // RUN: %clang_cc1 -emit-llvm-only %s
2 void f(bool flag) {
3   int a = 1;
4   int b = 2;
5 
6   (flag ? a : b) = 3;
7 }
8