mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-24 15:09:39 +08:00
* g++.old-deja/g++.pt/static6.C: New test.
From-SVN: r23910
This commit is contained in:
parent
d1b0fca0d2
commit
bc4f0b0a26
@ -1,5 +1,7 @@
|
||||
1998-11-27 Alexandre Oliva <oliva@dcc.unicamp.br>
|
||||
|
||||
* g++.old-deja/g++.pt/static6.C: New test.
|
||||
|
||||
* g++.old-deja/g++.pt/decl2.C: New test.
|
||||
|
||||
1998-11-26 Alexandre Oliva <oliva@dcc.unicamp.br>
|
||||
|
14
gcc/testsuite/g++.old-deja/g++.pt/static6.C
Normal file
14
gcc/testsuite/g++.old-deja/g++.pt/static6.C
Normal file
@ -0,0 +1,14 @@
|
||||
// Build don't run:
|
||||
|
||||
// Simplified from testcase by Erez Louidor Lior <s3824888@techst02.technion.ac.il>
|
||||
|
||||
// causes linker error - XFAIL *-*-*
|
||||
|
||||
template <class T> struct A {
|
||||
static const int l[1];
|
||||
};
|
||||
|
||||
template<class T>
|
||||
const int A<T>::l[1] = {1};
|
||||
|
||||
int i = A<int>::l[0];
|
Loading…
Reference in New Issue
Block a user