bolt/deps/llvm-18.1.8/clang/test/Analysis/Inputs/ctu-chain.cpp

21 lines
204 B
C++
Raw Normal View History

2025-02-14 19:21:04 +01:00
int h_chain(int x) {
return x * 2;
}
namespace chns {
int chf3(int x);
int chf2(int x) {
return chf3(x);
}
class chcls {
public:
int chf4(int x);
};
int chcls::chf4(int x) {
return x * 3;
}
}