blob: 96554e9dcf4a4eb3beb060a24a9d2bc24a474c33 [file] [log] [blame]
Douglas Gregor2e933882010-01-12 17:06:20 +00001// 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};