// RUN: %clang_cc1 -verify -fsyntax-only %s // expected-no-diagnostics template struct Node { int lhs; void splay( ) { Node n[1]; (void)n->lhs; } }; void f() { Node n; return n.splay(); }