-
Notifications
You must be signed in to change notification settings - Fork 698
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #1124 - emilio:templatedecl-eager-resolve, r=pepyakin
ir: Don't eagerly-resolve template alias declarations. Fixes #1118
- Loading branch information
Showing
3 changed files
with
139 additions
and
7 deletions.
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
119 changes: 119 additions & 0 deletions
119
tests/expectations/tests/issue-1118-using-forward-decl.rs
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,119 @@ | ||
/* automatically generated by rust-bindgen */ | ||
|
||
|
||
#![allow(dead_code, non_snake_case, non_camel_case_types, non_upper_case_globals)] | ||
|
||
|
||
pub type c = nsTArray; | ||
#[repr(C)] | ||
#[derive(Debug, Copy, Clone)] | ||
pub struct nsTArray_base { | ||
pub d: *mut ::std::os::raw::c_int, | ||
} | ||
#[test] | ||
fn bindgen_test_layout_nsTArray_base() { | ||
assert_eq!( | ||
::std::mem::size_of::<nsTArray_base>(), | ||
8usize, | ||
concat!("Size of: ", stringify!(nsTArray_base)) | ||
); | ||
assert_eq!( | ||
::std::mem::align_of::<nsTArray_base>(), | ||
8usize, | ||
concat!("Alignment of ", stringify!(nsTArray_base)) | ||
); | ||
assert_eq!( | ||
unsafe { &(*(0 as *const nsTArray_base)).d as *const _ as usize }, | ||
0usize, | ||
concat!( | ||
"Alignment of field: ", | ||
stringify!(nsTArray_base), | ||
"::", | ||
stringify!(d) | ||
) | ||
); | ||
} | ||
impl Default for nsTArray_base { | ||
fn default() -> Self { | ||
unsafe { ::std::mem::zeroed() } | ||
} | ||
} | ||
#[repr(C)] | ||
#[derive(Debug, Copy, Clone)] | ||
pub struct nsTArray { | ||
pub _base: nsTArray_base, | ||
} | ||
impl Default for nsTArray { | ||
fn default() -> Self { | ||
unsafe { ::std::mem::zeroed() } | ||
} | ||
} | ||
#[repr(C)] | ||
#[derive(Debug, Copy, Clone)] | ||
pub struct nsIContent { | ||
pub foo: nsTArray, | ||
} | ||
#[test] | ||
fn bindgen_test_layout_nsIContent() { | ||
assert_eq!( | ||
::std::mem::size_of::<nsIContent>(), | ||
8usize, | ||
concat!("Size of: ", stringify!(nsIContent)) | ||
); | ||
assert_eq!( | ||
::std::mem::align_of::<nsIContent>(), | ||
8usize, | ||
concat!("Alignment of ", stringify!(nsIContent)) | ||
); | ||
assert_eq!( | ||
unsafe { &(*(0 as *const nsIContent)).foo as *const _ as usize }, | ||
0usize, | ||
concat!( | ||
"Alignment of field: ", | ||
stringify!(nsIContent), | ||
"::", | ||
stringify!(foo) | ||
) | ||
); | ||
} | ||
impl Default for nsIContent { | ||
fn default() -> Self { | ||
unsafe { ::std::mem::zeroed() } | ||
} | ||
} | ||
extern "C" { | ||
#[link_name = "\u{1}_Z35Gecko_GetAnonymousContentForElementv"] | ||
pub fn Gecko_GetAnonymousContentForElement() -> *mut nsTArray; | ||
} | ||
#[test] | ||
fn __bindgen_test_layout_nsTArray_open0_ptr_nsIContent_close0_instantiation() { | ||
assert_eq!( | ||
::std::mem::size_of::<nsTArray>(), | ||
8usize, | ||
concat!("Size of template specialization: ", stringify!(nsTArray)) | ||
); | ||
assert_eq!( | ||
::std::mem::align_of::<nsTArray>(), | ||
8usize, | ||
concat!( | ||
"Alignment of template specialization: ", | ||
stringify!(nsTArray) | ||
) | ||
); | ||
} | ||
#[test] | ||
fn __bindgen_test_layout_nsTArray_open0_ptr_nsIContent_close0_instantiation_1() { | ||
assert_eq!( | ||
::std::mem::size_of::<nsTArray>(), | ||
8usize, | ||
concat!("Size of template specialization: ", stringify!(nsTArray)) | ||
); | ||
assert_eq!( | ||
::std::mem::align_of::<nsTArray>(), | ||
8usize, | ||
concat!( | ||
"Alignment of template specialization: ", | ||
stringify!(nsTArray) | ||
) | ||
); | ||
} |
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,10 @@ | ||
template <class> class nsTArray; | ||
template <class b> using c = nsTArray<b>; | ||
class nsTArray_base { | ||
int *d; | ||
}; | ||
template <class> class nsTArray : nsTArray_base {}; | ||
class nsIContent { | ||
nsTArray<nsIContent *> foo; | ||
}; | ||
nsTArray<nsIContent*> *Gecko_GetAnonymousContentForElement(); |