blob: 7fe556312bab48ab677ccd529473c1e8e02d6eeb [file] [log] [blame]
Eli Friedman48daf592009-12-07 20:25:53 +00001// RUN: clang-cc -emit-llvm-only -verify %s
2
3int val = 42;
4int& test1() {
5 return throw val, val;
6}
7
8int test2() {
9 return val ? throw val : val;
10}