view clang/test/CodeGenCXX/used-decl-visitor.cpp @ 206:f17a3b42b08b

Added tag before-12 for changeset b7591485f4cd
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 07 Jun 2021 21:25:57 +0900 (2021-06-07)
parents 0572611fdcc8
children
line wrap: on
line source
// 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();
}