2017-12-17 01:53:11 +03:00
|
|
|
error: missing angle brackets in associated item path
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/bad-assoc-ty.rs:1:10
|
2017-12-17 01:53:11 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | type A = [u8; 4]::AssocTy;
|
2017-12-17 01:53:11 +03:00
|
|
|
| ^^^^^^^^^^^^^^^^ help: try: `<[u8; 4]>::AssocTy`
|
|
|
|
|
|
|
|
error: missing angle brackets in associated item path
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/bad-assoc-ty.rs:5:10
|
2017-12-17 01:53:11 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | type B = [u8]::AssocTy;
|
2017-12-17 01:53:11 +03:00
|
|
|
| ^^^^^^^^^^^^^ help: try: `<[u8]>::AssocTy`
|
|
|
|
|
|
|
|
error: missing angle brackets in associated item path
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/bad-assoc-ty.rs:9:10
|
2017-12-17 01:53:11 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | type C = (u8)::AssocTy;
|
2017-12-17 01:53:11 +03:00
|
|
|
| ^^^^^^^^^^^^^ help: try: `<(u8)>::AssocTy`
|
|
|
|
|
|
|
|
error: missing angle brackets in associated item path
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/bad-assoc-ty.rs:13:10
|
2017-12-17 01:53:11 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | type D = (u8, u8)::AssocTy;
|
2017-12-17 01:53:11 +03:00
|
|
|
| ^^^^^^^^^^^^^^^^^ help: try: `<(u8, u8)>::AssocTy`
|
|
|
|
|
|
|
|
error: missing angle brackets in associated item path
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/bad-assoc-ty.rs:17:10
|
2017-12-17 01:53:11 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | type E = _::AssocTy;
|
2017-12-17 01:53:11 +03:00
|
|
|
| ^^^^^^^^^^ help: try: `<_>::AssocTy`
|
|
|
|
|
2017-12-18 23:42:58 +03:00
|
|
|
error: missing angle brackets in associated item path
|
2020-02-27 15:59:08 -08:00
|
|
|
--> $DIR/bad-assoc-ty.rs:21:19
|
2017-12-18 23:42:58 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | type F = &'static (u8)::AssocTy;
|
2017-12-18 23:42:58 +03:00
|
|
|
| ^^^^^^^^^^^^^ help: try: `<(u8)>::AssocTy`
|
|
|
|
|
|
|
|
error: missing angle brackets in associated item path
|
2020-02-27 15:59:08 -08:00
|
|
|
--> $DIR/bad-assoc-ty.rs:27:10
|
2017-12-18 23:42:58 +03:00
|
|
|
|
|
2019-05-28 14:46:13 -04:00
|
|
|
LL | type G = dyn 'static + (Send)::AssocTy;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `<dyn 'static + (Send)>::AssocTy`
|
2019-03-09 17:41:01 +03:00
|
|
|
|
|
|
|
error: missing angle brackets in associated item path
|
2021-07-10 10:00:54 +02:00
|
|
|
--> $DIR/bad-assoc-ty.rs:46:10
|
2019-03-09 17:41:01 +03:00
|
|
|
|
|
|
|
|
LL | type I = ty!()::AssocTy;
|
|
|
|
| ^^^^^^^^^^^^^^ help: try: `<ty!()>::AssocTy`
|
|
|
|
|
|
|
|
error: missing angle brackets in associated item path
|
2021-07-10 10:00:54 +02:00
|
|
|
--> $DIR/bad-assoc-ty.rs:39:19
|
2019-03-09 17:41:01 +03:00
|
|
|
|
|
|
|
|
LL | ($ty: ty) => ($ty::AssocTy);
|
|
|
|
| ^^^^^^^^^^^^ help: try: `<$ty>::AssocTy`
|
|
|
|
...
|
|
|
|
LL | type J = ty!(u8);
|
|
|
|
| ------- in this macro invocation
|
2019-12-16 15:56:47 +02:00
|
|
|
|
|
2021-02-13 14:52:25 -05:00
|
|
|
= note: this error originates in the macro `ty` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2017-12-18 23:42:58 +03:00
|
|
|
|
2017-12-17 01:53:11 +03:00
|
|
|
error[E0223]: ambiguous associated type
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/bad-assoc-ty.rs:1:10
|
2017-12-17 01:53:11 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | type A = [u8; 4]::AssocTy;
|
2020-01-11 15:22:36 +13:00
|
|
|
| ^^^^^^^^^^^^^^^^ help: use fully-qualified syntax: `<[u8; 4] as Trait>::AssocTy`
|
2017-12-17 01:53:11 +03:00
|
|
|
|
|
|
|
error[E0223]: ambiguous associated type
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/bad-assoc-ty.rs:5:10
|
2017-12-17 01:53:11 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | type B = [u8]::AssocTy;
|
2018-10-10 20:49:45 -07:00
|
|
|
| ^^^^^^^^^^^^^ help: use fully-qualified syntax: `<[u8] as Trait>::AssocTy`
|
2017-12-17 01:53:11 +03:00
|
|
|
|
|
|
|
error[E0223]: ambiguous associated type
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/bad-assoc-ty.rs:9:10
|
2017-12-17 01:53:11 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | type C = (u8)::AssocTy;
|
2018-10-10 20:49:45 -07:00
|
|
|
| ^^^^^^^^^^^^^ help: use fully-qualified syntax: `<u8 as Trait>::AssocTy`
|
2017-12-17 01:53:11 +03:00
|
|
|
|
|
|
|
error[E0223]: ambiguous associated type
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/bad-assoc-ty.rs:13:10
|
2017-12-17 01:53:11 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | type D = (u8, u8)::AssocTy;
|
2018-10-10 20:49:45 -07:00
|
|
|
| ^^^^^^^^^^^^^^^^^ help: use fully-qualified syntax: `<(u8, u8) as Trait>::AssocTy`
|
2017-12-17 01:53:11 +03:00
|
|
|
|
2021-06-19 07:02:40 +08:00
|
|
|
error[E0121]: the type placeholder `_` is not allowed within types on item signatures for type aliases
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/bad-assoc-ty.rs:17:10
|
2017-12-17 01:53:11 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | type E = _::AssocTy;
|
2017-12-17 01:53:11 +03:00
|
|
|
| ^ not allowed in type signatures
|
|
|
|
|
2017-12-18 23:42:58 +03:00
|
|
|
error[E0223]: ambiguous associated type
|
2020-02-27 15:59:08 -08:00
|
|
|
--> $DIR/bad-assoc-ty.rs:21:19
|
2017-12-18 23:42:58 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | type F = &'static (u8)::AssocTy;
|
2018-10-10 20:49:45 -07:00
|
|
|
| ^^^^^^^^^^^^^ help: use fully-qualified syntax: `<u8 as Trait>::AssocTy`
|
2017-12-18 23:42:58 +03:00
|
|
|
|
|
|
|
error[E0223]: ambiguous associated type
|
2020-02-27 15:59:08 -08:00
|
|
|
--> $DIR/bad-assoc-ty.rs:27:10
|
2017-12-18 23:42:58 +03:00
|
|
|
|
|
2019-05-28 14:46:13 -04:00
|
|
|
LL | type G = dyn 'static + (Send)::AssocTy;
|
2020-09-02 10:40:56 +03:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use fully-qualified syntax: `<(dyn Send + 'static) as Trait>::AssocTy`
|
2017-12-18 23:42:58 +03:00
|
|
|
|
2021-07-10 10:00:54 +02:00
|
|
|
warning: trait objects without an explicit `dyn` are deprecated
|
|
|
|
--> $DIR/bad-assoc-ty.rs:33:10
|
|
|
|
|
|
|
|
|
LL | type H = Fn(u8) -> (u8)::Output;
|
2021-10-10 22:18:30 +02:00
|
|
|
| ^^^^^^^^^^^^^^ help: use `dyn`: `<dyn Fn(u8) -> (u8)>`
|
2021-07-10 10:00:54 +02:00
|
|
|
|
|
|
|
|
= note: `#[warn(bare_trait_objects)]` on by default
|
|
|
|
= warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021!
|
|
|
|
= note: for more information, see <https://doc.rust-lang.org/nightly/edition-guide/rust-2021/warnings-promoted-to-error.html>
|
|
|
|
|
2017-12-18 23:42:58 +03:00
|
|
|
error[E0223]: ambiguous associated type
|
2020-02-27 15:59:08 -08:00
|
|
|
--> $DIR/bad-assoc-ty.rs:33:10
|
2017-12-18 23:42:58 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | type H = Fn(u8) -> (u8)::Output;
|
2020-09-02 10:40:56 +03:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ help: use fully-qualified syntax: `<(dyn Fn(u8) -> u8 + 'static) as Trait>::Output`
|
2017-12-18 23:42:58 +03:00
|
|
|
|
2019-03-09 17:41:01 +03:00
|
|
|
error[E0223]: ambiguous associated type
|
2021-07-10 10:00:54 +02:00
|
|
|
--> $DIR/bad-assoc-ty.rs:39:19
|
2019-03-09 17:41:01 +03:00
|
|
|
|
|
|
|
|
LL | ($ty: ty) => ($ty::AssocTy);
|
|
|
|
| ^^^^^^^^^^^^ help: use fully-qualified syntax: `<u8 as Trait>::AssocTy`
|
|
|
|
...
|
|
|
|
LL | type J = ty!(u8);
|
|
|
|
| ------- in this macro invocation
|
2019-12-16 15:56:47 +02:00
|
|
|
|
|
2021-02-13 14:52:25 -05:00
|
|
|
= note: this error originates in the macro `ty` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2019-03-09 17:41:01 +03:00
|
|
|
|
|
|
|
error[E0223]: ambiguous associated type
|
2021-07-10 10:00:54 +02:00
|
|
|
--> $DIR/bad-assoc-ty.rs:46:10
|
2019-03-09 17:41:01 +03:00
|
|
|
|
|
|
|
|
LL | type I = ty!()::AssocTy;
|
|
|
|
| ^^^^^^^^^^^^^^ help: use fully-qualified syntax: `<u8 as Trait>::AssocTy`
|
|
|
|
|
2021-06-19 07:02:40 +08:00
|
|
|
error[E0121]: the type placeholder `_` is not allowed within types on item signatures for functions
|
2021-07-10 10:00:54 +02:00
|
|
|
--> $DIR/bad-assoc-ty.rs:51:13
|
2020-02-13 13:34:00 -08:00
|
|
|
|
|
|
|
|
LL | fn foo<X: K<_, _>>(x: X) {}
|
|
|
|
| ^ ^ not allowed in type signatures
|
|
|
|
| |
|
|
|
|
| not allowed in type signatures
|
2020-03-22 18:50:30 -07:00
|
|
|
|
|
|
|
|
help: use type parameters instead
|
|
|
|
|
|
2020-03-23 18:46:09 -07:00
|
|
|
LL | fn foo<X: K<T, T>, T>(x: X) {}
|
2021-06-21 19:07:19 -07:00
|
|
|
| ~ ~ +++
|
2020-03-22 18:50:30 -07:00
|
|
|
|
2021-06-19 07:02:40 +08:00
|
|
|
error[E0121]: the type placeholder `_` is not allowed within types on item signatures for functions
|
2021-07-10 10:00:54 +02:00
|
|
|
--> $DIR/bad-assoc-ty.rs:54:34
|
2020-03-22 18:50:30 -07:00
|
|
|
|
|
|
|
|
LL | fn bar<F>(_: F) where F: Fn() -> _ {}
|
|
|
|
| ^ not allowed in type signatures
|
|
|
|
|
|
|
|
|
help: use type parameters instead
|
|
|
|
|
|
|
|
|
LL | fn bar<F, T>(_: F) where F: Fn() -> T {}
|
2021-06-21 19:07:19 -07:00
|
|
|
| +++ ~
|
2020-03-22 18:50:30 -07:00
|
|
|
|
2021-06-19 07:02:40 +08:00
|
|
|
error[E0121]: the type placeholder `_` is not allowed within types on item signatures for functions
|
2021-07-10 10:00:54 +02:00
|
|
|
--> $DIR/bad-assoc-ty.rs:57:19
|
2020-03-22 18:50:30 -07:00
|
|
|
|
|
|
|
|
LL | fn baz<F: Fn() -> _>(_: F) {}
|
|
|
|
| ^ not allowed in type signatures
|
|
|
|
|
|
|
|
|
help: use type parameters instead
|
|
|
|
|
|
2020-03-23 18:46:09 -07:00
|
|
|
LL | fn baz<F: Fn() -> T, T>(_: F) {}
|
2021-06-21 19:07:19 -07:00
|
|
|
| ~+++
|
2020-03-22 18:50:30 -07:00
|
|
|
|
2021-06-19 07:02:40 +08:00
|
|
|
error[E0121]: the type placeholder `_` is not allowed within types on item signatures for structs
|
2021-07-10 10:00:54 +02:00
|
|
|
--> $DIR/bad-assoc-ty.rs:60:33
|
2020-03-22 18:50:30 -07:00
|
|
|
|
|
|
|
|
LL | struct L<F>(F) where F: Fn() -> _;
|
|
|
|
| ^ not allowed in type signatures
|
|
|
|
|
|
|
|
|
help: use type parameters instead
|
|
|
|
|
|
|
|
|
LL | struct L<F, T>(F) where F: Fn() -> T;
|
2021-06-21 19:07:19 -07:00
|
|
|
| +++ ~
|
2020-03-22 18:50:30 -07:00
|
|
|
|
2021-06-19 07:02:40 +08:00
|
|
|
error[E0121]: the type placeholder `_` is not allowed within types on item signatures for structs
|
2021-07-10 10:00:54 +02:00
|
|
|
--> $DIR/bad-assoc-ty.rs:62:30
|
2020-03-22 18:50:30 -07:00
|
|
|
|
|
|
|
|
LL | struct M<F> where F: Fn() -> _ {
|
|
|
|
| ^ not allowed in type signatures
|
|
|
|
|
|
|
|
|
help: use type parameters instead
|
|
|
|
|
|
|
|
|
LL | struct M<F, T> where F: Fn() -> T {
|
2021-06-21 19:07:19 -07:00
|
|
|
| +++ ~
|
2020-03-22 18:50:30 -07:00
|
|
|
|
2021-06-19 07:02:40 +08:00
|
|
|
error[E0121]: the type placeholder `_` is not allowed within types on item signatures for enums
|
2021-07-10 10:00:54 +02:00
|
|
|
--> $DIR/bad-assoc-ty.rs:66:28
|
2020-03-22 18:50:30 -07:00
|
|
|
|
|
|
|
|
LL | enum N<F> where F: Fn() -> _ {
|
|
|
|
| ^ not allowed in type signatures
|
|
|
|
|
|
|
|
|
help: use type parameters instead
|
|
|
|
|
|
|
|
|
LL | enum N<F, T> where F: Fn() -> T {
|
2021-06-21 19:07:19 -07:00
|
|
|
| +++ ~
|
2020-03-22 18:50:30 -07:00
|
|
|
|
2021-06-19 07:02:40 +08:00
|
|
|
error[E0121]: the type placeholder `_` is not allowed within types on item signatures for unions
|
2021-07-10 10:00:54 +02:00
|
|
|
--> $DIR/bad-assoc-ty.rs:71:29
|
2020-03-22 18:50:30 -07:00
|
|
|
|
|
|
|
|
LL | union O<F> where F: Fn() -> _ {
|
|
|
|
| ^ not allowed in type signatures
|
|
|
|
|
|
|
|
|
help: use type parameters instead
|
|
|
|
|
|
|
|
|
LL | union O<F, T> where F: Fn() -> T {
|
2021-06-21 19:07:19 -07:00
|
|
|
| +++ ~
|
2020-03-22 18:50:30 -07:00
|
|
|
|
2021-06-19 07:02:40 +08:00
|
|
|
error[E0121]: the type placeholder `_` is not allowed within types on item signatures for traits
|
2021-07-10 10:00:54 +02:00
|
|
|
--> $DIR/bad-assoc-ty.rs:76:29
|
2020-03-22 18:50:30 -07:00
|
|
|
|
|
|
|
|
LL | trait P<F> where F: Fn() -> _ {
|
|
|
|
| ^ not allowed in type signatures
|
|
|
|
|
|
|
|
|
help: use type parameters instead
|
|
|
|
|
|
|
|
|
LL | trait P<F, T> where F: Fn() -> T {
|
2021-06-21 19:07:19 -07:00
|
|
|
| +++ ~
|
2020-03-22 18:50:30 -07:00
|
|
|
|
2021-06-19 07:02:40 +08:00
|
|
|
error[E0121]: the type placeholder `_` is not allowed within types on item signatures for functions
|
2021-07-10 10:00:54 +02:00
|
|
|
--> $DIR/bad-assoc-ty.rs:81:38
|
2020-03-22 18:50:30 -07:00
|
|
|
|
|
|
|
|
LL | fn foo<F>(_: F) where F: Fn() -> _ {}
|
|
|
|
| ^ not allowed in type signatures
|
|
|
|
|
|
|
|
|
help: use type parameters instead
|
|
|
|
|
|
|
|
|
LL | fn foo<F, T>(_: F) where F: Fn() -> T {}
|
2021-06-21 19:07:19 -07:00
|
|
|
| +++ ~
|
2020-02-13 13:34:00 -08:00
|
|
|
|
2021-07-10 10:00:54 +02:00
|
|
|
error: aborting due to 28 previous errors; 1 warning emitted
|
2017-12-17 01:53:11 +03:00
|
|
|
|
2020-10-04 22:24:14 +02:00
|
|
|
Some errors have detailed explanations: E0121, E0223.
|
2018-03-03 15:59:40 +01:00
|
|
|
For more information about an error, try `rustc --explain E0121`.
|