1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
// PR c++/65695 // { dg-do compile { target c++11 } } struct Foo; struct Bar { using MemberFuncT = int (Foo::*)(); MemberFuncT h_; constexpr Bar(MemberFuncT h) : h_{h} { } }; struct Foo { int test() { return -1; } static constexpr Bar bar {&Foo::test}; }; constexpr Bar Foo::bar;