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