9 lines
157 B
C++
9 lines
157 B
C++
#include <stacktrace>
|
|
|
|
int main() {
|
|
std::stacktrace trace = std::stacktrace::current();
|
|
for(const auto entry : trace) {
|
|
(void)entry;
|
|
}
|
|
}
|