summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/input/cpp/Issue_2170.cpp
blob: beeffc7e04c6fea08cee880c24666addcb4e5034 (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();
};