1 template <class T> struct A {
2   static const bool b = false;
3 };
4 
5 template <class T>
6 const bool A<T>::b;
7 
8 void f ();
9