21 lines
475 B
Rust
21 lines
475 B
Rust
|
// aux-build:issue-104884.rs
|
||
|
|
||
|
use std::collections::BinaryHeap;
|
||
|
|
||
|
#[macro_use]
|
||
|
extern crate issue_104884;
|
||
|
|
||
|
#[derive(PartialEq, Eq, PartialOrd, Ord)]
|
||
|
struct PriorityQueueEntry<T> {
|
||
|
value: T,
|
||
|
}
|
||
|
|
||
|
#[derive(PartialOrd, AddImpl)]
|
||
|
//~^ ERROR can't compare `PriorityQueue<T>` with `PriorityQueue<T>`
|
||
|
//~| ERROR the trait bound `PriorityQueue<T>: Eq` is not satisfied
|
||
|
//~| ERROR can't compare `T` with `T`
|
||
|
|
||
|
struct PriorityQueue<T>(BinaryHeap<PriorityQueueEntry<T>>);
|
||
|
|
||
|
fn main() {}
|