Skip to content

Instantly share code, notes, and snippets.

@colinhumber
Created March 11, 2015 02:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save colinhumber/5a11de79075b1585d9bf to your computer and use it in GitHub Desktop.
Save colinhumber/5a11de79075b1585d9bf to your computer and use it in GitHub Desktop.
LLDB error using Swift Xcode 6.2
error: <EXPR>:1:11: error: use of undeclared type '$__lldb_context'
extension $__lldb_context {
^~~~~~~~~~~~~~~
<EXPR>:11:5: error: use of unresolved identifier '$__lldb_injected_self'
$__lldb_injected_self.$__lldb_wrapped_expr_3(
^
@AndreiBoariu
Copy link

po arrContacts.description
error: :1:11: error: use of undeclared type '$__lldb_context'
extension $__lldb_context {
^~~~~~~~~~~~~~~
:11:5: error: use of unresolved identifier '$__lldb_injected_self'
$__lldb_injected_self.$__lldb_wrapped_expr_3(
^

(lldb) po arrContacts.count
error: :1:11: error: use of undeclared type '$__lldb_context'
extension $__lldb_context {
^~~~~~~~~~~~~~~
:11:5: error: use of unresolved identifier '$__lldb_injected_self'
$__lldb_injected_self.$__lldb_wrapped_expr_4(
^

(lldb) po self.arrContacts.count
error: :1:11: error: use of undeclared type '$__lldb_context'
extension $__lldb_context {
^~~~~~~~~~~~~~~
:11:5: error: use of unresolved identifier '$__lldb_injected_self'
$__lldb_injected_self.$__lldb_wrapped_expr_5(
^
(lldb)

The same for me... Anyone has some idea about ?
Thanks in advance

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment