blob: 40f56b34dae090d3bfa5e70f0e68bb1d4e797de1 [file] [log] [blame]
Shih-wei Liaof8fd82b2010-02-10 11:10:31 -08001// RUN: %clang_cc1 -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