Bump to doxygen 1.9.2
[platform/upstream/doxygen.git] / testing / 071_enum_in_anon_ns.cpp
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 }}