blob: 7e917b974ec69eceffffc6d947319913eb83cec5 [file]
// Copyright (c) 2026 The pybind Community.
#include <pybind11/pybind11.h>
namespace standalone_enum_module_ns {
enum SomeEnum {};
} // namespace standalone_enum_module_ns
using namespace standalone_enum_module_ns;
PYBIND11_MODULE(standalone_enum_module, m) { // Added in PR #6015
pybind11::enum_<SomeEnum> some_enum_wrapper(m, "SomeEnum");
}