summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/input/cpp/issue_1778.cpp
blob: 4eea46e004c25421b009d56530d414c59fda1fae (plain)
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 )>;