summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/cpp/30916-Issue_1737.cpp
blob: 06b0866b2ab87ea2010a21f09bfc7f202e60fe53 (plain)
1
2
3
4
5
6
7
8
9
10
11
template<class T>
class foo
{
public:
T x;
foo<T>(int a) : x(a)
{
	int y = a;
	int z = 13;
}
};