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
i386: Zero extend 32-bit address to 64-bit with option -mx32 -maddress-mode=long...
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
compat
/
eh
/
template1.h
blob
c807b4753b5061a98ce29d6337d9830986b78819
1
class
A
{};
2
3
template
<
class
T
>
4
struct
B
5
{
6
typedef
A E
;
7
};
8
9
template
<
class
T
>
10
struct
C
11
{
12
typedef
B
<
T
>
D
;
13
typedef
typename
D
::
E E
;
14
void
f
()
15
#if __cplusplus < 201103L
16
throw
(
E
)
17
#endif
18
;
19
};