Files
rust/tests/ui/proc-macro/auxiliary/issue-104884.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
345 B
Rust
Raw Normal View History

extern crate proc_macro;
use proc_macro::TokenStream;
#[proc_macro_derive(AddImpl)]
pub fn derive(input: TokenStream) -> TokenStream {
"use std::cmp::Ordering;
impl<T> Ord for PriorityQueue<T> {
fn cmp(&self, other: &Self) -> Ordering {
self.0.cmp(&self.height)
}
}
"
.parse()
.unwrap()
}