blob: 4671b40a9e5f110c1c8d2bbac147b84098cb082d [file] [log] [blame]
// RUN: %llvmgcc -xc++ -S -o - %s | not grep weak
template<class T>
void thefunc();
template<class T>
inline void thefunc() {}
void test() {
thefunc<int>();
}