mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
9 lines
311 B
Rust
9 lines
311 B
Rust
pub trait SomeTrait {}
|
|
pub trait OtherThingxxxxxxxx {}
|
|
|
|
pub fn alef<T: OtherThingxxxxxxxx>() -> Result<T, ()> { loop {} }
|
|
pub fn bet<T: SomeTrait>() -> Result<T, ()> { loop {} }
|
|
|
|
pub fn alpha<T: OtherThingxxxxxxxx>(_param: Result<T, ()>) { loop {} }
|
|
pub fn beta<T: SomeTrait>(_param: Result<T, ()>) { loop {} }
|