blob: 40f56b34dae090d3bfa5e70f0e68bb1d4e797de1 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Anders Carlsson8d4c5ea2009-08-27 05:57:30 +00002
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