summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/cpp/const_throw.cpp
blob: f0d1773d24c1f82d1e3ddf68ab0ad8a963dd92b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
void GetFoo(void) 
const
 { return (m_Foo); }

int GetFoo(void)
 throw (std::bad_alloc)
 { return (m_Foo); }

class foo{
  void bar(void)
    const;
};