summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/cpp/30300-enum_shr.cpp
blob: 26e0d08e996bce09db9655e71cdbdfd51b3c6fd6 (plain)
1
2
3
4
5
6
7
8
enum MyEnum
{
   kOne   = 0,
   kTwo   = 1 << 0,
   kThree = 1 << 1,
   kFour  = 1 << 2
};