blob: 1e324caf2d615a2de1778282073fe67dfb1afa04 [file] [log] [blame]
Reid Spencer090acfb2007-01-27 00:21:01 +00001// RUN: %llvmgcc -xc++ -S -o - %s | not grep weak
2// XFAIL: llvmgcc4
Chris Lattner766be1d2003-11-02 06:30:39 +00003
4template<class T>
5void thefunc();
6
7template<class T>
8inline void thefunc() {}
9
10void test() {
11 thefunc<int>();
12}
13