blob: a0843c40f071d968cc6ef51e001b3979c4150ddd [file] [log] [blame]
Daniel Dunbar8fbe78f2009-12-15 20:14:24 +00001// RUN: %clang_cc1 -emit-llvm-only %s
Anders Carlsson160e6352009-09-15 16:36:17 +00002void f(bool flag) {
3 int a = 1;
4 int b = 2;
5
6 (flag ? a : b) = 3;
7}