blob: 78cedd0c98ca1dcf1143972462d6ee5f93d78c1c [file] [log] [blame]
Douglas Gregor2e933882010-01-12 17:06:20 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Andy Gibbs8e8fb3b2012-10-19 12:44:48 +00002// expected-no-diagnostics
Douglas Gregor2e933882010-01-12 17:06:20 +00003
4template<typename T>
5struct Base {
6 T inner;
7};
8
9template<typename T>
10struct X {
11 template<typename U>
12 struct Inner {
13 };
14
15 bool f(T other) {
16 return this->inner < other;
17 }
18};