2019-10-12 23:52:09 -05:00
|
|
|
// run-pass
|
2020-09-10 02:30:05 -05:00
|
|
|
// revisions: full min
|
2019-10-12 23:52:09 -05:00
|
|
|
// aux-build:const_generic_lib.rs
|
|
|
|
|
|
|
|
extern crate const_generic_lib;
|
|
|
|
|
2022-07-25 15:36:03 -05:00
|
|
|
struct Container(#[allow(unused_tuple_struct_fields)] const_generic_lib::Alias);
|
2019-10-12 23:52:09 -05:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let res = const_generic_lib::function(const_generic_lib::Struct([14u8, 1u8, 2u8]));
|
|
|
|
assert_eq!(res, 14u8);
|
|
|
|
let _ = Container(const_generic_lib::Struct([0u8, 1u8]));
|
|
|
|
}
|