mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 04:36:07 +00:00

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.
19 lines
210 B
C++
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();
|
|
}
|