2020-09-29 06:18:29 -05:00
|
|
|
// edition:2018
|
|
|
|
// check-pass
|
2021-08-27 11:04:57 -05:00
|
|
|
|
2020-09-29 06:18:29 -05:00
|
|
|
|
|
|
|
const SIZE: usize = 16;
|
|
|
|
|
|
|
|
struct Bar<const H: usize> {}
|
|
|
|
|
|
|
|
struct Foo<const H: usize> {}
|
|
|
|
|
|
|
|
impl<const H: usize> Foo<H> {
|
|
|
|
async fn biz(_: &[[u8; SIZE]]) -> Vec<()> {
|
|
|
|
vec![]
|
|
|
|
}
|
|
|
|
|
|
|
|
pub async fn baz(&self) -> Bar<H> {
|
|
|
|
Self::biz(&vec![]).await;
|
|
|
|
Bar {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() { }
|