Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
6d4b270e38e248fca2d8d947cd22bcb8904fa22a
/
.
/
test
/
FrontendC++
/
2004-09-27-CompilerCrash.cpp
blob: f507c2391508b65a3afeb096b1cc9ab64709119c [
file
] [
log
] [
blame
]
// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
struct
Pass
{}
;
template
<
typename
PassName
>
Pass
*
callDefaultCtor
()
{
return
new
PassName
();
}
void
foo
(
Pass
*(*
C
)());
#include
<string>
bool
foo
(
std
::
string
&
X
)
{
return
X
.
empty
();
}