Searched refs:WithStatic2 (Results 1 - 2 of 2) sorted by relevance
/gem5/ext/pybind11/tests/ |
H A D | test_multiple_inheritance.cpp | 29 struct WithStatic2 { struct 30 static std::string static_func2() { return "WithStatic2"; }; 33 struct VanillaStaticMix1 : Vanilla, WithStatic1, WithStatic2 { 37 struct VanillaStaticMix2 : WithStatic1, Vanilla, WithStatic2 { 42 int WithStatic2::static_value2 = 2; 178 py::class_<WithStatic2>(m, "WithStatic2") 180 .def_static("static_func2", &WithStatic2::static_func2) 181 .def_readwrite_static("static_value2", &WithStatic2::static_value2); 183 py::class_<VanillaStaticMix1, Vanilla, WithStatic1, WithStatic2>( [all...] |
H A D | test_multiple_inheritance.py | 239 assert d.static_func2() == "WithStatic2" 243 m.WithStatic2.static_value2 = 2
|
Completed in 6 milliseconds