Home | History | Annotate | Download | only in temp.local
      1 // RUN: %clang_cc1 -fsyntax-only -verify %s
      2 
      3 template<class T> struct A {
      4   int B;
      5   int f();
      6 };
      7 
      8 template<class B> int A<B>::f() {
      9   return B;
     10 }
     11