summaryrefslogtreecommitdiffstats
path: root/testing/071_enum_in_anon_ns.cpp
blob: 8aab15fc8de823ffc3fb521c21edcc4fc599a522 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// objective: test that enum values in anonymous namespaces produce no warning
// check: namespace_a_namespace_1_1_0d0.xml

namespace ANamespace { namespace {

enum class Boolean {
    False,
    True,
    FileNotFound
};

}}