Home | History | Annotate | Download | only in SemaTemplate
      1 // RUN: %clang_cc1 -fsyntax-only -verify %s
      2 // expected-no-diagnostics
      3 
      4 template<typename T> struct A {
      5   A() : j(10), i(10) { }
      6 
      7   int i;
      8   int j;
      9 };
     10 
     11 template<typename T> struct B : A<T> {
     12   B() : A<T>() { }
     13 };
     14 
     15