repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Daily bump.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
torture
/
pr60854.C
blob
fa4b2e71ab7eca8488d8d3170e4dc4debc32becb
1
template <typename T>
2
class MyClass
3
{
4
public:
5
__attribute__ ((__always_inline__)) inline MyClass () { ; }
6
};
7
8
extern template class MyClass<double>;
9
10
void Func()
11
{
12
MyClass<double> x;
13
}