2
0
mirror of https://github.com/boostorg/hof.git synced 2026-01-22 17:22:35 +00:00
Files
hof/test/fail/flip_lazy.cpp
2016-09-13 01:04:45 -05:00

9 lines
170 B
C++

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