blob: 96554e9dcf4a4eb3beb060a24a9d2bc24a474c33 [file] [log] [blame]
Shih-wei Liaof8fd82b2010-02-10 11:10:31 -08001// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3template<typename T>
4struct Base {
5 T inner;
6};
7
8template<typename T>
9struct X {
10 template<typename U>
11 struct Inner {
12 };
13
14 bool f(T other) {
15 return this->inner < other;
16 }
17};