Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
901b5750b2af095bb0e359f4d2c3debef3ad57e6
/
.
/
test
/
FrontendC++
/
2004-09-27-CompilerCrash.cpp
blob: f52baaf7058ccb6035f3cf83de87118a21526405 [
file
] [
log
] [
blame
]
// RUN: %llvmgxx -S %s -o - | llvm-as -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
();
}