bolt/deps/llvm-18.1.8/lldb/test/API/commands/frame/language/main.cpp
2025-02-14 19:21:04 +01:00

10 lines
115 B
C++

#include <stdio.h>
#include "other.h"
int
main()
{
int test_var = 10;
Other::DoSomethingElse();
return 0;
}