blob: 4a664cf92983f9badc0a036882f2b3222c096854 [file] [log] [blame]
template <typename T, int size>
void func(T&) {}
void trigger() {
int b;
func<int, 17>(b);
}