You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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 )>;
|