forked from rust-lang/rust-bindgen
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ir: We can't guarantee the type to be in the item map while propagati…
…ng AlreadyResolved. The item may come from a recursive check down the stack, and as we say there: > Unchecked because we haven't finished this type yet. Fixes rust-lang#1127
- Loading branch information
Showing
3 changed files
with
25 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/* automatically generated by rust-bindgen */ | ||
|
||
|
||
#![allow(dead_code, non_snake_case, non_camel_case_types, non_upper_case_globals)] | ||
|
||
|
||
#[repr(C)] | ||
#[derive(Debug, Default, Copy, Clone)] | ||
pub struct A { | ||
pub _address: u8, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// bindgen-flags: -- -std=c++11 | ||
|
||
template <typename> struct A; | ||
template <typename, typename, bool> struct _Map_base; | ||
template <typename _Pair, typename _Traits> | ||
struct _Map_base<_Pair, _Traits, true> { | ||
using __hashtable_base = A<_Traits>; | ||
using key_type = typename __hashtable_base::key_type; | ||
using mapped_type = typename _Pair::type; | ||
mapped_type &at(const key_type &); | ||
}; | ||
template <typename _Pair, typename _Traits> | ||
auto _Map_base<_Pair, _Traits, true>::at(const key_type &) -> mapped_type & {} |