// Test that -fno-weak doesn't break explicit instantiation of static data. // Special g++ Options: -fno-weak template struct A { static int i; }; template int A::i = 42; template class A; int main () { return (A::i != 42); }