mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
10 lines
118 B
C++
10 lines
118 B
C++
template <typename T>
|
|
int fn(T out) {
|
|
typedef int y[sizeof(out) + 1];
|
|
return 0;
|
|
}
|
|
|
|
int main() {
|
|
return fn(0);
|
|
}
|