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