Xcode Crashing When Debugging / Using LLDB

Hey all, on my project whenever I try to debug using breakpoints it crashes. It as in Xcode (not my app).

Anyone seen anything like this?

Crash report attached


After some more crashes I figured out it crashes when hovering over a local variable and trying to load the overlay for debugging.

So let's say I have some code like

Code Block language
let a = "foo
let b = " bar"
if a == "foo" {
print("hit a breakpoint")
}


If I turn on a breakpoint in the print statement, and then hover my mouse over "let a =" it will crash

Xcode Crashing When Debugging / Using LLDB
 
 
Q