blob: fef1587fad007b0679fc72bf6f8016ea1233cc2c [file] [log] [blame]
// RUN: %clang_cc1 -fcatch-undefined-behavior -emit-llvm-only %s
// PR6805
void foo() {
union { int i; } u;
u.i=1;
}