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
/
template
/
call1.C
blob
3b6e367af22fdac7974221aebbd372feee77a174
1
//Origin: harinath@cs.umn.edu
2
//PR c++/10804
3
// G++ was not emiting the function foo.
4
5
// { dg-do run }
6
7
8
template<class T>
9
struct A
10
{
11
A() { const void (*a)() = foo; }
12
static const void foo() {}
13
};
14
int main(int argc, char *argv[])
15
{
16
A<int> a;
17
}