rust/tests/ui/issues/issue-32995-2.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
823 B
Plaintext
Raw Normal View History

error[E0214]: parenthesized type parameters may only be used with a `Fn` trait
--> $DIR/issue-32995-2.rs:2:22
2018-07-15 16:11:54 -05:00
|
LL | { fn f<X: ::std::marker()::Send>() {} }
| ^^^^^^^^ only `Fn` traits may use parentheses
2018-07-15 16:11:54 -05:00
error[E0214]: parenthesized type parameters may only be used with a `Fn` trait
--> $DIR/issue-32995-2.rs:5:29
2018-07-15 16:11:54 -05:00
|
LL | { fn f() -> impl ::std::marker()::Send { } }
| ^^^^^^^^ only `Fn` traits may use parentheses
2018-07-15 16:11:54 -05:00
error[E0214]: parenthesized type parameters may only be used with a `Fn` trait
--> $DIR/issue-32995-2.rs:12:13
2018-07-15 16:11:54 -05:00
|
LL | impl ::std::marker()::Copy for X {}
| ^^^^^^^^ only `Fn` traits may use parentheses
2018-07-15 16:11:54 -05:00
error: aborting due to 3 previous errors
For more information about this error, try `rustc --explain E0214`.