Home | History | Annotate | Download | only in expr.ref
      1 // RUN: %clang_cc1 -verify -fsyntax-only %s
      2 
      3 template<typename T> struct Node {
      4 	int lhs;
      5 	void splay( )
      6 	{
      7 		Node<T> n[1];
      8 		(void)n->lhs;
      9 	}
     10 };
     11 
     12 void f() {
     13 	Node<int> n;
     14 	return n.splay();
     15 }
     16