Sign in
cobalt
/
cobalt
/
a7b1cfadc52288d71702934fd93743a24aea060a
/
.
/
src
/
third_party
/
llvm-project
/
clang
/
test
/
CodeGenCXX
/
2004-11-27-ExceptionCleanupAssertion.cpp
blob: ebcce7796e71b008b2f72ef7e574975b0eaee68f [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 %s -emit-llvm -o /dev/null
// This is PR421
struct
Strongbad
{
Strongbad
(
const
char
*
str
);
~
Strongbad
();
operator
const
char
*()
const
;
};
void
TheCheat
()
{
Strongbad
foo
(
0
);
Strongbad
dirs
[]
=
{
Strongbad
(
0
)
+
1
};
}