p3.cpp 236 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 // RUN: %clang_cc1 -verify -fsyntax-only %s // expected-no-diagnostics template<typename T> struct Node { int lhs; void splay( ) { Node<T> n[1]; (void)n->lhs; } }; void f() { Node<int> n; return n.splay(); }