llvm-project/clang/test/CodeGenCXX/used-decl-visitor.cpp
Yaxun (Sam) Liu e778db6d72 recommit b58f6bb1207521cdf6a856004525d7bffa5f2153
Add a test for UsedDeclVisitor

This test is reduced from mlir/lib/Transforms/AffineDataCopyGeneration.cpp
to make sure there is no assertion due to UsedDeclVisitor.
2020-03-19 00:26:38 -04:00

19 lines
210 B
C++

// RUN: %clang_cc1 -triple x86_64 -emit-llvm -o %t %s
// Make sure there is no assertion due to UsedDeclVisitor.
struct A {
int a;
};
static A a;
struct B {
B(int b = a.a) {}
};
void foo() {
B();
}