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