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++.brendan
/
visibility4.C
blob
158c161d307b04749b9cf3f0800db3fe4d36e86e
1
// { dg-do assemble }
2
// GROUPS passed visibility
3
template <class T>
4
class Feld {
5
public:
6
Feld(const Feld&) {}
7
};
8
9
class Polynom : private Feld<double> {
10
Polynom();
11
friend Polynom f(const Polynom&);
12
};
13
14
Polynom f(const Polynom& p) { return p; }