-
Notifications
You must be signed in to change notification settings - Fork 717
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test const mod enum variants shadowing "Type"
- Loading branch information
Showing
2 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
36 changes: 36 additions & 0 deletions
36
tests/expectations/tests/constify-module-enums-shadow-name.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,36 @@ | ||
/* automatically generated by rust-bindgen */ | ||
|
||
|
||
#![allow(dead_code, non_snake_case, non_camel_case_types, non_upper_case_globals)] | ||
|
||
|
||
pub mod foo { | ||
pub type Type = ::std::os::raw::c_uint; | ||
pub const Type: Type = 0; | ||
pub const Type_: Type = 1; | ||
pub const Type1: Type = 2; | ||
pub const Type__: Type = 3; | ||
} | ||
#[repr(C)] | ||
#[derive(Debug, Copy)] | ||
pub struct bar { | ||
pub member: foo::Type, | ||
} | ||
#[test] | ||
fn bindgen_test_layout_bar() { | ||
assert_eq!(::std::mem::size_of::<bar>() , 4usize , concat ! ( | ||
"Size of: " , stringify ! ( bar ) )); | ||
assert_eq! (::std::mem::align_of::<bar>() , 4usize , concat ! ( | ||
"Alignment of " , stringify ! ( bar ) )); | ||
assert_eq! (unsafe { | ||
& ( * ( 0 as * const bar ) ) . member as * const _ as usize } | ||
, 0usize , concat ! ( | ||
"Alignment of field: " , stringify ! ( bar ) , "::" , | ||
stringify ! ( member ) )); | ||
} | ||
impl Clone for bar { | ||
fn clone(&self) -> Self { *self } | ||
} | ||
impl Default for bar { | ||
fn default() -> Self { unsafe { ::std::mem::zeroed() } } | ||
} |
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,12 @@ | ||
// bindgen-flags: --constified-enum-module foo | ||
|
||
enum foo { | ||
Type, | ||
Type_, | ||
Type1, | ||
Type__, | ||
}; | ||
|
||
struct bar { | ||
enum foo member; | ||
}; |