You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ git clone https://github.com/KyleMayes/clang-sys && cd clang-sys
$ cargo build --features runtime
error[E0642]: patterns aren't allowed in methods without bodies
--> src/lib.rs:1683:39
|
1683 | pub fn clang_CXCursorSet_contains(set: CXCursorSet, cursor: CXCursor) -> c_uint;
| ^^^
|
help: give this argument a name or use an underscore to ignore it
|
1683 | pub fn clang_CXCursorSet_contains(_: CXCursorSet, cursor: CXCursor) -> c_uint;
| ^
error[E0642]: patterns aren't allowed in methods without bodies
--> src/lib.rs:1683:57
|
1683 | pub fn clang_CXCursorSet_contains(set: CXCursorSet, cursor: CXCursor) -> c_uint;
| ^^^^^^
|
help: give this argument a name or use an underscore to ignore it
|
1683 | pub fn clang_CXCursorSet_contains(set: CXCursorSet, _: CXCursor) -> c_uint;
| ^
(... and a long etcetera)
Meta
rustc --version --verbose
:The text was updated successfully, but these errors were encountered: