hanchenye-llvm-project/llvm/test/FrontendC++/2004-09-27-CompilerCrash.cpp

14 lines
242 B
C++

// 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();
}