9 lines
224 B
C++
9 lines
224 B
C++
import std;
|
|
#include <utempl/utempl.hpp>
|
|
|
|
auto main() -> int {
|
|
utempl::Overloaded([](auto&& arg) {},
|
|
[](int arg) {
|
|
std::cout << arg << std::endl;
|
|
})(42);
|
|
};
|