mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-05 11:48:30 +00:00
24 lines
412 B
Rust
24 lines
412 B
Rust
![]() |
// force-host
|
||
|
// no-prefer-dynamic
|
||
|
|
||
|
#![crate_type = "proc-macro"]
|
||
|
|
||
|
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()
|
||
|
}
|