rust/tests/ui/namespace/namespace-mix.stderr
Esteban Küber 5de8e6edfc Tweak output of import suggestions
When both `std::` and `core::` items are available, only suggest the
`std::` ones. We ensure that in `no_std` crates we suggest `core::`
items.

Ensure that the list of items suggested to be imported are always in the
order of local crate items, `std`/`core` items and finally foreign crate
items.

Tweak wording of import suggestion: if there are multiple items but they
are all of the same kind, we use the kind name and not the generic "items".

Fix #83564.
2024-06-13 20:22:21 +00:00

949 lines
29 KiB
Plaintext

error[E0423]: expected value, found type alias `m1::S`
--> $DIR/namespace-mix.rs:34:11
|
LL | pub struct TS();
| ---------------- similarly named tuple struct `TS` defined here
...
LL | check(m1::S);
| ^^^^^
|
= note: can't use a type alias as a constructor
help: a tuple struct with a similar name exists
|
LL | check(m1::TS);
| ~~
help: consider importing one of these constants instead
|
LL + use m2::S;
|
LL + use xm2::S;
|
help: if you import `S`, refer to it directly
|
LL - check(m1::S);
LL + check(S);
|
error[E0423]: expected value, found type alias `xm1::S`
--> $DIR/namespace-mix.rs:40:11
|
LL | check(xm1::S);
| ^^^^^^
|
::: $DIR/auxiliary/namespace-mix.rs:3:5
|
LL | pub struct TS();
| ------------- similarly named tuple struct `TS` defined here
|
= note: can't use a type alias as a constructor
help: a tuple struct with a similar name exists
|
LL | check(xm1::TS);
| ~~
help: consider importing one of these constants instead
|
LL + use m2::S;
|
LL + use xm2::S;
|
help: if you import `S`, refer to it directly
|
LL - check(xm1::S);
LL + check(S);
|
error[E0423]: expected value, found type alias `m7::V`
--> $DIR/namespace-mix.rs:100:11
|
LL | TV(),
| ---- similarly named tuple variant `TV` defined here
...
LL | check(m7::V);
| ^^^^^
|
= note: can't use a type alias as a constructor
help: a tuple variant with a similar name exists
|
LL | check(m7::TV);
| ~~
help: consider importing one of these constants instead
|
LL + use m8::V;
|
LL + use xm8::V;
|
help: if you import `V`, refer to it directly
|
LL - check(m7::V);
LL + check(V);
|
error[E0423]: expected value, found type alias `xm7::V`
--> $DIR/namespace-mix.rs:106:11
|
LL | check(xm7::V);
| ^^^^^^
|
::: $DIR/auxiliary/namespace-mix.rs:7:9
|
LL | TV(),
| -- similarly named tuple variant `TV` defined here
|
= note: can't use a type alias as a constructor
help: a tuple variant with a similar name exists
|
LL | check(xm7::TV);
| ~~
help: consider importing one of these constants instead
|
LL + use m8::V;
|
LL + use xm8::V;
|
help: if you import `V`, refer to it directly
|
LL - check(xm7::V);
LL + check(V);
|
error[E0277]: the trait bound `c::Item: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:33:11
|
LL | check(m1::S{});
| ----- ^^^^^^^ the trait `Impossible` is not implemented for `c::Item`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `c::S: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:35:11
|
LL | check(m2::S{});
| ----- ^^^^^^^ the trait `Impossible` is not implemented for `c::S`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `c::Item: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:36:11
|
LL | check(m2::S);
| ----- ^^^^^ the trait `Impossible` is not implemented for `c::Item`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `namespace_mix::c::Item: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:39:11
|
LL | check(xm1::S{});
| ----- ^^^^^^^^ the trait `Impossible` is not implemented for `namespace_mix::c::Item`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `namespace_mix::c::S: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:41:11
|
LL | check(xm2::S{});
| ----- ^^^^^^^^ the trait `Impossible` is not implemented for `namespace_mix::c::S`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `namespace_mix::c::Item: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:42:11
|
LL | check(xm2::S);
| ----- ^^^^^^ the trait `Impossible` is not implemented for `namespace_mix::c::Item`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `c::Item: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:55:11
|
LL | check(m3::TS{});
| ----- ^^^^^^^^ the trait `Impossible` is not implemented for `c::Item`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `fn() -> c::TS {c::TS}: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:56:11
|
LL | check(m3::TS);
| ----- ^^^^^^ the trait `Impossible` is not implemented for fn item `fn() -> c::TS {c::TS}`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `c::TS: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:57:11
|
LL | check(m4::TS{});
| ----- ^^^^^^^^ the trait `Impossible` is not implemented for `c::TS`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `c::Item: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:58:11
|
LL | check(m4::TS);
| ----- ^^^^^^ the trait `Impossible` is not implemented for `c::Item`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `namespace_mix::c::Item: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:61:11
|
LL | check(xm3::TS{});
| ----- ^^^^^^^^^ the trait `Impossible` is not implemented for `namespace_mix::c::Item`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `fn() -> namespace_mix::c::TS {namespace_mix::c::TS}: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:62:11
|
LL | check(xm3::TS);
| ----- ^^^^^^^ the trait `Impossible` is not implemented for fn item `fn() -> namespace_mix::c::TS {namespace_mix::c::TS}`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `namespace_mix::c::TS: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:63:11
|
LL | check(xm4::TS{});
| ----- ^^^^^^^^^ the trait `Impossible` is not implemented for `namespace_mix::c::TS`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `namespace_mix::c::Item: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:64:11
|
LL | check(xm4::TS);
| ----- ^^^^^^^ the trait `Impossible` is not implemented for `namespace_mix::c::Item`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `c::Item: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:77:11
|
LL | check(m5::US{});
| ----- ^^^^^^^^ the trait `Impossible` is not implemented for `c::Item`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `c::US: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:78:11
|
LL | check(m5::US);
| ----- ^^^^^^ the trait `Impossible` is not implemented for `c::US`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `c::US: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:79:11
|
LL | check(m6::US{});
| ----- ^^^^^^^^ the trait `Impossible` is not implemented for `c::US`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `c::Item: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:80:11
|
LL | check(m6::US);
| ----- ^^^^^^ the trait `Impossible` is not implemented for `c::Item`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `namespace_mix::c::Item: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:83:11
|
LL | check(xm5::US{});
| ----- ^^^^^^^^^ the trait `Impossible` is not implemented for `namespace_mix::c::Item`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `namespace_mix::c::US: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:84:11
|
LL | check(xm5::US);
| ----- ^^^^^^^ the trait `Impossible` is not implemented for `namespace_mix::c::US`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `namespace_mix::c::US: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:85:11
|
LL | check(xm6::US{});
| ----- ^^^^^^^^^ the trait `Impossible` is not implemented for `namespace_mix::c::US`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `namespace_mix::c::Item: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:86:11
|
LL | check(xm6::US);
| ----- ^^^^^^^ the trait `Impossible` is not implemented for `namespace_mix::c::Item`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `c::Item: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:99:11
|
LL | check(m7::V{});
| ----- ^^^^^^^ the trait `Impossible` is not implemented for `c::Item`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `c::E: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:101:11
|
LL | check(m8::V{});
| ----- ^^^^^^^ the trait `Impossible` is not implemented for `c::E`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `c::Item: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:102:11
|
LL | check(m8::V);
| ----- ^^^^^ the trait `Impossible` is not implemented for `c::Item`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `namespace_mix::c::Item: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:105:11
|
LL | check(xm7::V{});
| ----- ^^^^^^^^ the trait `Impossible` is not implemented for `namespace_mix::c::Item`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `namespace_mix::c::E: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:107:11
|
LL | check(xm8::V{});
| ----- ^^^^^^^^ the trait `Impossible` is not implemented for `namespace_mix::c::E`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `namespace_mix::c::Item: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:108:11
|
LL | check(xm8::V);
| ----- ^^^^^^ the trait `Impossible` is not implemented for `namespace_mix::c::Item`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `c::Item: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:121:11
|
LL | check(m9::TV{});
| ----- ^^^^^^^^ the trait `Impossible` is not implemented for `c::Item`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `fn() -> c::E {c::E::TV}: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:122:11
|
LL | check(m9::TV);
| ----- ^^^^^^ the trait `Impossible` is not implemented for fn item `fn() -> c::E {c::E::TV}`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `c::E: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:123:11
|
LL | check(mA::TV{});
| ----- ^^^^^^^^ the trait `Impossible` is not implemented for `c::E`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `c::Item: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:124:11
|
LL | check(mA::TV);
| ----- ^^^^^^ the trait `Impossible` is not implemented for `c::Item`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `namespace_mix::c::Item: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:127:11
|
LL | check(xm9::TV{});
| ----- ^^^^^^^^^ the trait `Impossible` is not implemented for `namespace_mix::c::Item`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `fn() -> namespace_mix::c::E {namespace_mix::xm7::TV}: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:128:11
|
LL | check(xm9::TV);
| ----- ^^^^^^^ the trait `Impossible` is not implemented for fn item `fn() -> namespace_mix::c::E {namespace_mix::xm7::TV}`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `namespace_mix::c::E: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:129:11
|
LL | check(xmA::TV{});
| ----- ^^^^^^^^^ the trait `Impossible` is not implemented for `namespace_mix::c::E`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `namespace_mix::c::Item: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:130:11
|
LL | check(xmA::TV);
| ----- ^^^^^^^ the trait `Impossible` is not implemented for `namespace_mix::c::Item`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `c::Item: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:143:11
|
LL | check(mB::UV{});
| ----- ^^^^^^^^ the trait `Impossible` is not implemented for `c::Item`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `c::E: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:144:11
|
LL | check(mB::UV);
| ----- ^^^^^^ the trait `Impossible` is not implemented for `c::E`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `c::E: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:145:11
|
LL | check(mC::UV{});
| ----- ^^^^^^^^ the trait `Impossible` is not implemented for `c::E`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `c::Item: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:146:11
|
LL | check(mC::UV);
| ----- ^^^^^^ the trait `Impossible` is not implemented for `c::Item`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `namespace_mix::c::Item: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:149:11
|
LL | check(xmB::UV{});
| ----- ^^^^^^^^^ the trait `Impossible` is not implemented for `namespace_mix::c::Item`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `namespace_mix::c::E: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:150:11
|
LL | check(xmB::UV);
| ----- ^^^^^^^ the trait `Impossible` is not implemented for `namespace_mix::c::E`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `namespace_mix::c::E: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:151:11
|
LL | check(xmC::UV{});
| ----- ^^^^^^^^^ the trait `Impossible` is not implemented for `namespace_mix::c::E`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error[E0277]: the trait bound `namespace_mix::c::Item: Impossible` is not satisfied
--> $DIR/namespace-mix.rs:152:11
|
LL | check(xmC::UV);
| ----- ^^^^^^^ the trait `Impossible` is not implemented for `namespace_mix::c::Item`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/namespace-mix.rs:20:1
|
LL | trait Impossible {}
| ^^^^^^^^^^^^^^^^
note: required by a bound in `check`
--> $DIR/namespace-mix.rs:21:13
|
LL | fn check<T: Impossible>(_: T) {}
| ^^^^^^^^^^ required by this bound in `check`
error: aborting due to 48 previous errors
Some errors have detailed explanations: E0277, E0423.
For more information about an error, try `rustc --explain E0277`.