OSDN Git Service

* gcc.dg/tm/memopt-6.c: Cleanup tmedge tree dump.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / defarg4.C
1 // PR c++/14763
2
3 struct A { 
4   int get() const {} 
5   static A *foo(); 
6 }; 
7  
8 template<bool> struct S { 
9   S(unsigned int = A::foo()->get())  ; 
10 }; 
11  
12 void foo() throw() { 
13   S<false> f; 
14