Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CXX / expr / expr.post / expr.ref / p3.cpp
blobdb33c014eeb733f7a8cb86d65c15fec7053824ed
1 // RUN: %clang_cc1 -verify -fsyntax-only %s
2 // expected-no-diagnostics
4 template<typename T> struct Node {
5 int lhs;
6 void splay( )
8 Node<T> n[1];
9 (void)n->lhs;
13 void f() {
14 Node<int> n;
15 return n.splay();