Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
3b5b92ab39388bb180097f3234fde9239532af4c
/
.
/
test
/
CodeGenCXX
/
throw-expressions.cpp
blob: 1670e4450237d4d7aa055a3a9c326a7f3c10bdac [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -emit-llvm-only -verify %s -Wno-unreachable-code
int
val
=
42
;
int
&
test1
()
{
return
throw
val
,
val
;
}
int
test2
()
{
return
val
?
throw
val
:
val
;
}