// PR c++/14763

struct A { 
  int get() const {} 
  static A *foo(); 
}; 
 
template<bool> struct S { 
  S(unsigned int = A::foo()->get())  ; 
}; 
 
void foo() throw() { 
  S<false> f; 
} 


syntax highlighted by Code2HTML, v. 0.9.1