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
/
conv8.C
blob
96f3b98651693cb7a2472795d519d3b807ca0c8e
1
// { dg-options "-fabi-version=1" }
2
3
template <typename T> struct S {
4
struct I{};
5
operator I* ();
6
};
7
8
template <typename T> struct S2 : S<T> {
9
operator typename S<T>::I* ();
10
};
11
12
template struct S2<int>;