Files
2018-08-02 17:53:23 +01:00

13 lines
127 B
C++

template <typename... Xs>
struct Foo {
Foo() {
f();
}
void f(Xs... xs) {}
};
int main() {
Foo<>();
}