summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/expected/cpp/30226-sp_enum_colon.cpp
blob: be23e68723b7e3c3335f58fc03dc1a110f406725 (plain)
1
2
3
4
5
6
7
8
9
10
enum Enum1:int {
	E31=0,
	E32=1,
	E33=2
};
enum Enum2 :     int {
	E31=0,
	E32=1,
	E33=2
};