Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaCXX / pr27047-default-init-expr-name-conflict.cpp
blob772db9935c07827ef5d629c4450501c057e74b2b
1 // RUN: %clang_cc1 -fsyntax-only -std=c++11 %s
3 template <typename T>
4 struct A {
5 // Used to crash when field was named after class.
6 int A = 0;
7 };
8 A<int> a;