• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 
3 template<typename T> struct A {
AA4   A() : j(10), i(10) { }
5 
6   int i;
7   int j;
8 };
9 
10 template<typename T> struct B : A<T> {
BB11   B() : A<T>() { }
12 };
13 
14