]> git.lizzy.rs Git - rust.git/blobdiff - src/librustc_codegen_llvm/value.rs
Reduced line length to pass tidy
[rust.git] / src / librustc_codegen_llvm / value.rs
index 4bf5b09baa6294ffbfd022bdb4bc8e5646f3cdfa..357cc8fbf80e8439f7b58b9b84761be42c303148 100644 (file)
 use std::fmt;
 use std::hash::{Hash, Hasher};
 
+pub trait ValueTrait: fmt::Debug {}
+
 impl PartialEq for Value {
     fn eq(&self, other: &Self) -> bool {
         self as *const _ == other as *const _
     }
 }
 
+impl ValueTrait for Value {}
+
 impl Eq for Value {}
 
 impl Hash for Value {