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