mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
13 lines
127 B
C++
13 lines
127 B
C++
template <typename... Xs>
|
|
struct Foo {
|
|
Foo() {
|
|
f();
|
|
}
|
|
void f(Xs... xs) {}
|
|
};
|
|
|
|
int main() {
|
|
Foo<>();
|
|
}
|
|
|