blob: d739dfc59d27b0efa994e661affb0844cb76325d [file] [log] [blame]
error[E0277]: the trait bound `NotDebugOrDisplay: Marker` is not satisfied
--> $DIR/overlap-marker-trait.rs:40:5
|
LL | is_marker::<NotDebugOrDisplay>(); //~ ERROR
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Marker` is not implemented for `NotDebugOrDisplay`
|
note: required by `is_marker`
--> $DIR/overlap-marker-trait.rs:28:1
|
LL | fn is_marker<T: Marker>() { }
| ^^^^^^^^^^^^^^^^^^^^^^^^^
error: aborting due to previous error
For more information about this error, try `rustc --explain E0277`.