]> gcc.gnu.org Git - gcc.git/blob - gcc/testsuite/g++.old-deja/g++.pt/lookup9.C
pt.c (instantiate_decl): Tell the repository code about the clones, not the cloned...
[gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / lookup9.C
1 // Build don't link:
2 // Origin: "Artem Hodyush" <artem@duma.gov.ru>
3
4 struct B { int m; };
5
6 template< class T >
7 void
8 q( T& t ) {
9 t.T::m=1;
10 }
11
12 void f() {
13 B b;
14 b.B::m=1;
15 q( b );
16 }
This page took 1.294521 seconds and 5 git commands to generate.