[Lldb-commits] [lldb] [lldb] add a marker before skipped frames (PR #167550)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Tue Dec 16 13:46:01 PST 2025
================
@@ -0,0 +1,12 @@
+#include <functional>
+#include <iostream>
+
+static void target() {
+ int a = 0; // break here
+}
+
+int main() {
+ std::function<void()> fn = [] { target(); };
+ fn();
+ return 0;
+}
----------------
JDevlieghere wrote:
Missing newline
https://github.com/llvm/llvm-project/pull/167550
More information about the lldb-commits
mailing list