mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
14 lines
409 B
Rust
14 lines
409 B
Rust
fn main() {
|
|
{ fn f<X: ::std::marker()::Send>() {} }
|
|
//~^ ERROR parenthesized type parameters may only be used with a `Fn` trait
|
|
|
|
{ fn f() -> impl ::std::marker()::Send { } }
|
|
//~^ ERROR parenthesized type parameters may only be used with a `Fn` trait
|
|
}
|
|
|
|
#[derive(Clone)]
|
|
struct X;
|
|
|
|
impl ::std::marker()::Copy for X {}
|
|
//~^ ERROR parenthesized type parameters may only be used with a `Fn` trait
|