13 lines
316 B
Rust
13 lines
316 B
Rust
|
// run-pass
|
||
|
// aux-build:const_generic_lib.rs
|
||
|
|
||
|
extern crate const_generic_lib;
|
||
|
|
||
|
struct Container(const_generic_lib::Alias);
|
||
|
|
||
|
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]));
|
||
|
}
|