1 template <typename T, int size> func(T &)2 void func(T&) {} trigger()3 void trigger() { 4 int b; 5 func<int, 17>(b); 6 } 7