Add PR check to suggest alternatives to using undef (#118506)
[llvm-project.git] / clang / test / Modules / Reachability-func-ret.cpp
blob7d34387726f683cb93055be8f5e6eaac7ace7c05
1 // RUN: rm -rf %t
2 // RUN: mkdir -p %t
3 // RUN: split-file %s %t
4 //
5 // RUN: %clang_cc1 -std=c++20 %t/func_ret.cppm -emit-module-interface -o %t/func_ret.pcm
6 // RUN: %clang_cc1 -std=c++20 -fprebuilt-module-path=%t %t/Use.cpp -verify -fsyntax-only
8 // RUN: %clang_cc1 -std=c++20 %t/func_ret.cppm -emit-reduced-module-interface -o %t/func_ret.pcm
9 // RUN: %clang_cc1 -std=c++20 -fprebuilt-module-path=%t %t/Use.cpp -verify -fsyntax-only
11 //--- func_ret.cppm
12 export module func_ret;
13 struct t {};
14 export t foo() {
15 return t{};
18 //--- Use.cpp
19 // expected-no-diagnostics
20 import func_ret;
21 void bar() {
22 auto ret = foo();