summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/expected/cpp/60064-issue_3368.cpp
blob: 2158086c9481f20e553637dcb105d926d2ea3cda (plain)
1
2
3
4
5
6
7
8
9
10
class Spaceship
{
public:
	template<class T>
	Spaceship<T>():shields(100)
	{
	}

	int shields;
};