mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-20 09:37:50 +00:00
13 lines
165 B
Plaintext
13 lines
165 B
Plaintext
|
// RUN: %llvmgcc -xc++ -S -o - %s | not grep weak
|
||
|
|
||
|
template<class T>
|
||
|
void thefunc();
|
||
|
|
||
|
template<class T>
|
||
|
inline void thefunc() {}
|
||
|
|
||
|
void test() {
|
||
|
thefunc<int>();
|
||
|
}
|
||
|
|