// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "base/types/cxx23_is_scoped_enum.h" #include <stdint.h> namespace base { namespace { enum SimpleEnum { … }; enum EnumWithExplicitType : uint64_t { … }; enum class ScopedEnum { … }; struct SimpleStruct { … }; static_assert …; static_assert …; static_assert …; static_assert …; } // namespace } // namespace base