mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-13 02:17:41 +00:00
22 lines
710 B
Rust
22 lines
710 B
Rust
![]() |
//@ edition: 2021
|
||
|
|
||
|
fn polarity() -> impl Sized + ?use<> {}
|
||
|
//~^ ERROR expected identifier, found keyword `use`
|
||
|
//~| ERROR cannot find trait `r#use` in this scope
|
||
|
|
||
|
fn asyncness() -> impl Sized + async use<> {}
|
||
|
//~^ ERROR expected identifier, found keyword `use`
|
||
|
//~| ERROR cannot find trait `r#use` in this scope
|
||
|
//~| ERROR async closures are unstable
|
||
|
|
||
|
fn constness() -> impl Sized + const use<> {}
|
||
|
//~^ ERROR expected identifier, found keyword `use`
|
||
|
//~| ERROR cannot find trait `r#use` in this scope
|
||
|
//~| ERROR const trait impls are experimental
|
||
|
|
||
|
fn binder() -> impl Sized + for<'a> use<> {}
|
||
|
//~^ ERROR expected identifier, found keyword `use`
|
||
|
//~| ERROR cannot find trait `r#use` in this scope
|
||
|
|
||
|
fn main() {}
|