OSDN Git Service

* g++.old-deja/g++.pt/static11.C: Add xtensa-*-elf* to the
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / t07.C
1 // Build don't link: 
2
3 template <class A> class B {
4   A a;
5  public:
6   const A& value () { return a; }
7 };
8 static B<int> b_int;
9
10 int foo () { return b_int.value(); }