Results 6 comments of zyctree

the `len` of the array is 10, so `array[10]` is out of bound, and will push a `null`

https://en.cppreference.com/w/cpp/error/errno

add `BufReader` and `BufWriter` will help `BufReader` can be added directly ```rust let mut ri = tokio::io::BufReader::new(ri); let mut ro = tokio::io::BufReader::new(ro); ``` `BufWriter` need to work with `poll_flush`

here is my result of https://github.com/cg31/PerfectRelay/tree/master/rust_async_std ```txt # without BufReader [ ID] Interval Transfer Bandwidth [ 3] 0.0-11.8 sec 10.0 GBytes 7.26 Gbits/sec # with BufReader [ ID] Interval Transfer...

add the following codes will work ```cpp if (Param->isExplicitObjectParameter()) continue; ``` https://github.com/llvm/llvm-project/blob/73324cbc9c5892541aa82d466799748b435ece29/clang/lib/Sema/SemaCodeComplete.cpp#L3109-L3120

@zyn0217 sure, is clang/lib/Sema/SemaCodeComplete.cpp the right file to write unittest? since i find clang/unittests/Sema/CodeCompleteTest.cpp, which seems to have similar functions