C++程序  |  8行  |  111 B

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