blob: 2217954596b4a650f99190ffc1a0e90f61a0ddcf [file] [log] [blame]
// PR c++/54764
// { dg-require-effective-target c++11 }
template<class T = void>
struct c
{
int (*f)(int) = [](int i){return i + i;};
};