// RUN: %clang_cc1 -fsyntax-only -verify %s // expected-no-diagnostics template struct A { A() : j(10), i(10) { } int i; int j; }; template struct B : A { B() : A() { } };