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
testsuite: i386: adapt to -std=gnu23 default change
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.pt
/
memclass1.C
blob
e1d748a3ce17b574f8c85577f70792bdfc16c578
1
// { dg-do run }
2
template <class T> struct A {
3
template <class U> struct B {
4
template <class V> void f (V) { }
5
void g () { }
6
};
7
};
8
9
int main ()
10
{
11
A<int>::B<char> b;
12
b.f (42);
13
b.g ();
14
}