brintos

brintos / llvm-project-archived public Read only

0
0
Text · 207 B · d77469b Raw
15 lines · plain
1// RUN: %clang_cc1 %s -triple spir-unknown-unknown -pedantic -verify -fsyntax-only2// expected-no-diagnostics3 4// Extract from PR386145struct C {};6 7C f1() {8 return C{};9}10 11C f2(){12    C c;13    return c;14}15