Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
c3e48b06fb755ee9c959a34d647b999a7a39c6d8
/
.
/
test
/
FrontendC++
/
2004-11-27-ExceptionCleanupAssertion.cpp
blob: f3d225e81a603289c625ccdf74d3e947f47e0d30 [
file
] [
log
] [
blame
]
// RUN: %llvmgxx %s -S -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
};
}