================ @@ -0,0 +1,26 @@ +#include <memory> + +struct NodeS; + +// Fake smart pointer definition. +class smart_ptr { +public: + NodeS *__ptr_; ---------------- cmtice wrote: Done. https://github.com/llvm/llvm-project/pull/143786