2003-11-02 06:30:39 +00:00
|
|
|
// RUN: %llvmgcc -xc++ -S -o - %s | not grep weak
|
2006-11-08 23:25:58 +00:00
|
|
|
// XFAIL: llvmgcc4
|
2003-11-02 06:30:39 +00:00
|
|
|
|
|
|
|
template<class T>
|
|
|
|
void thefunc();
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
inline void thefunc() {}
|
|
|
|
|
|
|
|
void test() {
|
|
|
|
thefunc<int>();
|
|
|
|
}
|
|
|
|
|