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
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
template
/
addr1.C
blob
dd5e3870fc53e238de9f62d855e5fa02df4965bc
1
// PR c++/15542
2
3
template <typename> struct S_T {
4
const char** operator & ();
5
};
6
7
template <class T> void foo(T **) {}
8
9
template <typename> void templateTest() {
10
S_T<const char> s_t;
11
foo(&s_t);
12
}