* g++.old-deja/g++.pt/instantiate6.C: New test.
From-SVN: r23911
This commit is contained in:
parent
bc4f0b0a26
commit
be537f34b0
2 changed files with 28 additions and 0 deletions
|
@ -1,5 +1,7 @@
|
|||
1998-11-27 Alexandre Oliva <oliva@dcc.unicamp.br>
|
||||
|
||||
* g++.old-deja/g++.pt/instantiate6.C: New test.
|
||||
|
||||
* g++.old-deja/g++.pt/static6.C: New test.
|
||||
|
||||
* g++.old-deja/g++.pt/decl2.C: New test.
|
||||
|
|
26
gcc/testsuite/g++.old-deja/g++.pt/instantiate6.C
Normal file
26
gcc/testsuite/g++.old-deja/g++.pt/instantiate6.C
Normal file
|
@ -0,0 +1,26 @@
|
|||
// Build then link:
|
||||
// Special g++ Options: -frepo
|
||||
|
||||
// Simplified from testcase by Erez Louidor Lior <s3824888@techst02.technion.ac.il>
|
||||
// causes linker error - XFAIl *-*-*
|
||||
|
||||
template <class T>
|
||||
class foo{
|
||||
public:
|
||||
void g();
|
||||
void h();
|
||||
};
|
||||
|
||||
template <class T>
|
||||
void foo<T>::g() {
|
||||
h();
|
||||
}
|
||||
|
||||
template <class T>
|
||||
void foo<T>::h() {
|
||||
}
|
||||
|
||||
int main() {
|
||||
foo<int> f;
|
||||
f.g();
|
||||
}
|
Loading…
Add table
Reference in a new issue