2
0
mirror of https://github.com/boostorg/hof.git synced 2026-01-22 17:22:35 +00:00
Files
hof/test/fail/rotate_lazy.cpp
2017-03-22 19:46:23 -05:00

9 lines
174 B
C++

#include <fit/lazy.hpp>
#include <fit/placeholders.hpp>
#include <fit/rotate.hpp>
int main() {
auto i = (fit::rotate(fit::_1 - fit::_2) * fit::_1)(3, 6);
(void)i;
}