]> git.proxmox.com Git - rustc.git/blame - src/test/ui/marker_trait_attr/overlap-marker-trait.stderr
New upstream version 1.44.1+dfsg1
[rustc.git] / src / test / ui / marker_trait_attr / overlap-marker-trait.stderr
CommitLineData
0bf4aa26 1error[E0277]: the trait bound `NotDebugOrDisplay: Marker` is not satisfied
e1599b0c 2 --> $DIR/overlap-marker-trait.rs:27:17
0bf4aa26
XL
3 |
4LL | fn is_marker<T: Marker>() { }
ba9703b0 5 | ------ required by this bound in `is_marker`
e1599b0c
XL
6...
7LL | is_marker::<NotDebugOrDisplay>();
8 | ^^^^^^^^^^^^^^^^^ the trait `Marker` is not implemented for `NotDebugOrDisplay`
0bf4aa26
XL
9
10error: aborting due to previous error
11
12For more information about this error, try `rustc --explain E0277`.