Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: 6a63a54439e273d955a4cd0e688a94e76043c462 (plain) (blame)
1
2
3
4
5
6
7
8
9
class emptyClass {
}

enum MyEnum {
	UNDEFINED(0) {
	}
}

enum EmptyEnum {}

Back to the top