summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/30270-const_throw.cpp
blob: 44f0ca680e1199fd18621a350d30a02b3335f1db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
void GetFoo(void)
                                                                     const
{
	return (m_Foo);
}

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

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