brintos

brintos / llvm-project-archived public Read only

0
0
Text · 206 B · 76c6f29 Raw
15 lines · cpp
1// RUN: %clang_cc1 -triple x86_64-linux-gnu -emit-llvm -fmerge-all-constants %s -o /dev/null2 3struct A {4};5 6struct B {7  const struct A& a = {};8};9 10void Test(const struct B&);11 12void Run() {13  Test({});14}15