[ORC] Fail materialization in tasks that are destroyed before running.
[llvm-project.git] / clang / test / Import / struct-layout / Inputs / Callee.cpp
blob62422af6c2dea367ee126a664eafe1efee91d10b
1 struct S {
2 int a;
3 };
5 struct Bar {
6 void bar(int _a) {
7 S s = { _a };
8 };
9 };