summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/expected/cpp/30745-Issue_2170.cpp
blob: f1edafd82c19764c1afd5796efc13f4ff986e744 (plain)
1
2
3
4
5
6
7
8
class Foo
{
public:
Foo( int bar = 1 );
Foo( const Foo & )             = delete;
Foo &operator= ( const Foo & ) = delete;
~Foo();
};