// Build don't run: // Origin: Mark Mitchell // Special g++ Options: -fno-implicit-templates template struct U { static int j; }; template struct S { static const int i = 7; }; template const int S::i; template int U::j = S::i + 5; template int U::j; int main () { }