blob: 22f5b0bc093b66ab9f3b3abe66519afaf1267239 [file] [log] [blame]
// PR c++/65719
// { dg-do link { target c++14 } }
struct FunctionObject {
void operator()() const { }
};
template <typename T>
constexpr FunctionObject f{};
int main() {
f<int>();
}