blob: 62077fabc72119099181d54ba2755d67204059e1 [file] [log] [blame]
Anders Carlsson8d4c5ea2009-08-27 05:57:30 +00001// RUN: clang-cc -fsyntax-only -verify %s
2
3template<typename T> struct A {
4 A() : j(10), i(10) { }
5
6 int i;
7 int j;
8};
9
10template<typename T> struct B : A<T> {
11 B() : A<T>() { }
12};
13