blob: 4671b40a9e5f110c1c8d2bbac147b84098cb082d [file] [log] [blame]
Chris Lattner766be1d2003-11-02 06:30:39 +00001// RUN: %llvmgcc -xc++ -S -o - %s | not grep weak
2
3template<class T>
4void thefunc();
5
6template<class T>
7inline void thefunc() {}
8
9void test() {
10 thefunc<int>();
11}
12