mirror of
https://github.com/opnsense/src.git
synced 2026-03-06 15:20:53 -05:00
8 lines
109 B
C++
8 lines
109 B
C++
|
|
// RUN: clang-cc -emit-llvm-only %s
|
||
|
|
void f(bool flag) {
|
||
|
|
int a = 1;
|
||
|
|
int b = 2;
|
||
|
|
|
||
|
|
(flag ? a : b) = 3;
|
||
|
|
}
|