]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-33140.stderr
New upstream version 1.47.0~beta.2+dfsg1
[rustc.git] / src / test / ui / issues / issue-33140.stderr
CommitLineData
0731742a
XL
1error[E0119]: conflicting implementations of trait `Trait` for type `(dyn std::marker::Send + std::marker::Sync + 'static)`:
2 --> $DIR/issue-33140.rs:9:1
3 |
4LL | impl Trait for dyn Send + Sync {
5 | ------------------------------ first implementation here
6...
7LL | impl Trait for dyn Sync + Send {
8 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `(dyn std::marker::Send + std::marker::Sync + 'static)`
9
10error[E0119]: conflicting implementations of trait `Trait2` for type `(dyn std::marker::Send + std::marker::Sync + 'static)`:
11 --> $DIR/issue-33140.rs:22:1
12 |
13LL | impl Trait2 for dyn Send + Sync {
14 | ------------------------------- first implementation here
15...
16LL | impl Trait2 for dyn Sync + Send + Sync {
17 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `(dyn std::marker::Send + std::marker::Sync + 'static)`
18
19error[E0592]: duplicate definitions with name `abc`
20 --> $DIR/issue-33140.rs:29:5
21 |
3dfed10e
XL
22LL | fn abc() -> bool {
23 | ^^^^^^^^^^^^^^^^ duplicate definitions for `abc`
0731742a 24...
3dfed10e
XL
25LL | fn abc() -> bool {
26 | ---------------- other definition for `abc`
0731742a
XL
27
28error: aborting due to 3 previous errors
29
dc9dc135
XL
30Some errors have detailed explanations: E0119, E0592.
31For more information about an error, try `rustc --explain E0119`.