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
/
op1.C
blob
7cc9c9e91c2c9cbf12c427073dd0b118c9c62cc8
1
template <class T> struct X {
2
typedef int type;
3
};
4
5
template <class T> struct O {
6
struct I {
7
operator typename X<T>::type ();
8
};
9
};
10
11
template <class T>
12
O<T>::I::operator typename X<T>::type () {}