Created
March 11, 2015 02:37
-
-
Save colinhumber/5a11de79075b1585d9bf to your computer and use it in GitHub Desktop.
LLDB error using Swift Xcode 6.2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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( | |
^ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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