Clang Project

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