summaryrefslogtreecommitdiffstats
path: root/test/CXX/expr/expr.post/expr.ref/p3.cpp
blob: db33c014eeb733f7a8cb86d65c15fec7053824ed (plain)
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();
}
OpenPOWER on IntegriCloud