repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
rtti
/
repo1.C
blob
54b52b397aaf3f031b4a6765d54ffd976697647c
1
// PR c++/22204
2
// { dg-options "-frepo" }
3
4
#include <typeinfo>
5
template<int>
6
struct function1
7
{
8
function1()
9
{
10
typeid(int[100]);
11
}
12
};
13
function1<1> b;
14
15
int main () {}
16
17
// { dg-final { cleanup-repo-files } }