bolt/deps/llvm-18.1.8/compiler-rt/test/profile/Inputs/instrprof-gcov-exceptions.cpp

12 lines
93 B
C++
Raw Normal View History

2025-02-14 19:21:04 +01:00
#include <string>
void asd(std::string i) {
}
int main(void)
{
asd("22");
return 0;
}