// RUN: %llvmgcc -xc++ -S -o - %s | not grep weak
template<class T>
void thefunc();
inline void thefunc() {}
void test() {
thefunc<int>();
}