pybind11/tests/test_make_alias.cpp
Tom de Geus eb2ecf1033
Update tests/test_make_alias.cpp
Co-authored-by: Sebastian Koslowski <sebastian.koslowski@gmail.com>
2022-02-26 22:37:31 +01:00

23 lines
577 B
C++

/*
tests/make_alias -- make alias
Copyright (c) 2016 Wenzel Jakob <wenzel.jakob@epfl.ch>
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
*/
#include <pybind11/pybind11.h>
#include "constructor_stats.h"
#include "pybind11_tests.h"
#if defined(_MSC_VER)
# pragma warning(disable : 4996) // C4996: std::unary_negation is deprecated
#endif
TEST_SUBMODULE(_make_alias, m) {
ma = m.make_alias(pybind11::module::strip_leading_underscore_from_name{});
ma.def("foo", []() -> {});
}