1 // objective: test that enum values in anonymous namespaces produce no warning
2 // check: namespace_a_namespace_1_1_0d0.xml
3 
4 namespace ANamespace { namespace {
5 
6 enum class Boolean {
7     False,
8     True,
9     FileNotFound
10 };
11 
12 }}
13