// RUN: clang-cc -fsyntax-only -verify %s template struct X0 { template struct Inner0 { static const unsigned value = 0; }; template struct Inner0 { static const unsigned value = 1; }; }; template template struct X0::Inner0 { static const unsigned value = 2; }; // FIXME: Test instantiation of these partial specializations (once they are // implemented).