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
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
gcc
/
testsuite
/
g++.old-deja
/
g++.robertl
/
eb9.C
blob
a64380d98f5885570f1ffc9a9157e72f0d1b34cf
1
// { dg-do assemble }
2
template <class Key>
3
class d0om_Hashmap
4
{
5
public:
6
typedef int value_type;
7
8
class iterator
9
{
10
public:
11
value_type* operator-> () const;
12
};
13
14
};
15
16
17
template <class Key>
18
typename d0om_Hashmap<Key>::value_type*
19
d0om_Hashmap<Key>::iterator::operator-> () const
20
{
21
return 0;
22
}