repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.pt
/
t31.C
blob
4e3718bc762e7647ec0060a91d4183d1ffa24720
1
// { dg-do assemble }
2
3
struct B { int foo (); };
4
int B::foo() { return 37; }
5
6
template <class A> struct X {
7
void f();
8
};
9
10
template <class A> void X<A>::f ()
11
{}
12
13
X<int> x;
14
15
void xyzzy () {
16
x.f ();
17
}