// RUN: %clang_cc1 -fsyntax-only -verify %s // expected-no-diagnostics template struct Base { T inner; }; template struct X { template struct Inner { }; bool f(T other) { return this->inner < other; } };