mirror of
https://github.com/openharmony/third_party_rust_rust.git
synced 2026-07-24 15:15:34 -04:00
18ca7378ab
Part of #60485
19 lines
402 B
Rust
19 lines
402 B
Rust
pub struct P;
|
|
pub struct Q;
|
|
pub struct R<T>(T);
|
|
|
|
// returns test
|
|
pub fn alef() -> &'static [R<P>] { loop {} }
|
|
pub fn bet() -> R<[Q; 32]> { loop {} }
|
|
|
|
// in_args test
|
|
pub fn alpha(_x: R<&'static [P]>) { loop {} }
|
|
pub fn beta(_x: [R<Q>; 32]) { loop {} }
|
|
|
|
pub trait TraitCat {}
|
|
pub trait TraitDog {}
|
|
|
|
pub fn gamma<T: TraitCat + TraitDog>(t: [T; 32]) {}
|
|
|
|
pub fn epsilon<T: TraitCat + TraitDog>(t: &[T]) {}
|