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
libstdc++: Tweak comments on includes in hashtable headers
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.brendan
/
template4.C
blob
61ad1cc6b37e42e172fec6506072695f6359f7f4
1
// { dg-do assemble }
2
// GROUPS passed templates
3
// This used to be a circularity in chainon.
4
template <class ARG> struct TMPL {
5
typedef int ARG::*ARG_data_member_ptr;
6
typedef void (ARG::*ARG_func_member_ptr) ();
7
};
8
9
struct S { };
10
11
TMPL<S> object;