blob: 964d1d7afc354f22fd2543ce260420880f57b8a0 [file] [log] [blame]
// Build don't link:
template <class T>
struct S {};
template <class T>
inline void g(T t)
{
here:
S<T> st;
goto here;
}
template <class T>
void f(T t)
{
here:
g(t);
goto here;
}
void h()
{
f(3);
}