Cameron Pickett

Results 2 issues of Cameron Pickett

Fixes #105. First, extends the parsing syntax to allow for `Clone` bounds added to an extern Rust type. Then, introduces a public `Box clone() const noexcept;` member on `Box` that...

### Input C/C++ Header ```C++ using size_t = decltype(sizeof(0)); namespace std { inline namespace __1 { #ifdef BROKEN using ::size_t; #else using size_t = ::size_t; #endif }} void foo(std::size_t i);...