7 lines
103 B
Rust
7 lines
103 B
Rust
//@ edition: 2021
|
|
|
|
async fn str<T>(T: &str) -> &str { &str }
|
|
//~^ ERROR mismatched types
|
|
|
|
fn main() {}
|