summaryrefslogtreecommitdiffstats
path: root/testing/071_enum_in_anon_ns.cpp
blob: a5b9ac801733f22910592f709a96eb7fca518abb (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
};

}}