summaryrefslogtreecommitdiff
path: root/ext/pybind11/tests/test_installed_module/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pybind11/tests/test_installed_module/main.cpp')
-rw-r--r--ext/pybind11/tests/test_installed_module/main.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/ext/pybind11/tests/test_installed_module/main.cpp b/ext/pybind11/tests/test_installed_module/main.cpp
deleted file mode 100644
index a0bda4542..000000000
--- a/ext/pybind11/tests/test_installed_module/main.cpp
+++ /dev/null
@@ -1,10 +0,0 @@
-#include <pybind11/pybind11.h>
-namespace py = pybind11;
-
-PYBIND11_PLUGIN(test_installed_module) {
- py::module m("test_installed_module");
-
- m.def("add", [](int i, int j) { return i + j; });
-
- return m.ptr();
-}