1 2 3 4 5 6 7
using x = Foo::foo_t; using a1 = decltype( &Foo::operator() ); using a2 = Bar<decltype( &Foo::operator() )>; using b1 = decltype( *Foo::y ); using b2 = Bar<decltype( *Foo::y )>;