In WWDC 2015 session 402 (titled "What's new in lldb") the presenter describes a number of improvements in lldb but none of them seem to work in my Xcode 7. The presenter shows several examples in which he says "here's what used to happen..." (and shows an error message), "but we've fixed that and here's what you get now ..." (and shows that you now get the result you expected). So I tried a few of those examples, copying exactly from his slide, and in every example I tried my lldb still gives the old error message. IOW it's acting as if it didn't get updated.
For example the lldb command:
(lldb) p NSMakeRect(0, 0, 10, 10)
while debugging an Objective-C class formerly gave no response because NSMakeRect wasn't recognized. But now (he says) it gives:
(NSRect) $0 = (origin = (x = 0, y = 0), size = (width = 10, height = 10))
However when I try it, I get the old error:
(lldb) p NSMakeRect(0, 0, 10, 10)
error: use of undeclared identifier 'NSMakeRect'
error: 1 errors parsing expression
I have OSX 10.11.2, Xcode 7.2, and lldb version lldb-340.4.119 (give the 'version' or 'v' command in lldb to see the version). I downloaded my current Xcode just like any other version and installed it in the normal default way. I don't remember any anomaly or error. I didn't update lldb separately. I assumed it got updated automatically along with Xcode. Is that assumption correct?
Do I have the current lldb? Does anyone know why my lldb seems to be not updated?