Files
histogram/test/fail_histogram_dynamic_at_wrong_dimension_test.cpp
Hans Dembinski d4b1715451 all tests pass
2018-08-13 01:24:41 +02:00

8 lines
153 B
C++

#include <boost/histogram.hpp>
using namespace boost::histogram;
int main() {
auto h = make_dynamic_histogram(axis::integer<>(0, 2));
h.at(0, 0);
}