Index: lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/loop/main.cpp =================================================================== --- lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/loop/main.cpp +++ lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/loop/main.cpp @@ -16,9 +16,9 @@ printf("// Set break point at this line."); auto *third_elem = numbers_list->__end_.__next_->__next_->__next_; - assert(third_elem->__value_ == 3); + assert(third_elem->__as_node()->__value_ == 3); auto *fifth_elem = third_elem->__next_->__next_; - assert(fifth_elem->__value_ == 5); + assert(fifth_elem->__as_node()->__value_ == 5); fifth_elem->__next_ = third_elem; #endif