// RUN: clang-cc -fsyntax-only -verify %s template struct A { A() : j(10), i(10) { } int i; int j; }; template struct B : A { B() : A() { } };