Home | History | Annotate | Download | only in SemaCXX
      1 // RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s
      2 // Don't crash (PR25181).
      3 
      4 template <typename T> class Foo { // expected-note {{template parameter is declared here}}
      5   template <typename T> // expected-error {{declaration of 'T' shadows template parameter}}
      6   void Foo<T>::method(T *) const throw() {} // expected-error {{nested name specifier 'Foo<T>::' for declaration does not refer into a class, class template or class template partial specialization}}
      7 };
      8