mirror of
https://github.com/boostorg/hana.git
synced 2026-02-23 15:52:11 +00:00
12 lines
212 B
C++
12 lines
212 B
C++
<% render(instance) %>
|
|
<%= includes((0..x).size) %>
|
|
|
|
template <int i> struct x { };
|
|
|
|
int main() {
|
|
auto go = <%= list(
|
|
(0..x).map { |i| "x<#{i}>" },
|
|
(0..x).map { |i| "x<#{i}>{}" }
|
|
) %>;
|
|
}
|