this throws a `bad_function_call` and gdb says "no stack" =/. Failing test is in #62 ```C++ TEST_CASE("bad_function_call") { zdispatcher_t<detail::plus, 2>::init(); auto x0 = xarray<int>::from_shape({2,2}); auto x1 = xarray<int>::from_shape({2,2}); zarray z0(x0); zarray z1(x1); auto res = xarray<double>::from_shape({2,2}); zarray zres(res); zres = x0 + x1; } ``` without the explicit init I get a "callback not found" exception as expected