rust/src/test/auxiliary/trait_default_method_xc_aux_2.rs
Jack Moffitt b349036e5f Make crate hash stable and externally computable.
This replaces the link meta attributes with a pkgid attribute and uses a hash
of this as the crate hash. This makes the crate hash computable by things
other than the Rust compiler. It also switches the hash function ot SHA1 since
that is much more likely to be available in shell, Python, etc than SipHash.

Fixes #10188, #8523.
2013-12-10 17:04:24 -07:00

18 lines
338 B
Rust

// aux-build:trait_default_method_xc_aux.rs
extern mod aux = "trait_default_method_xc_aux";
use aux::A;
pub struct a_struct { x: int }
impl A for a_struct {
fn f(&self) -> int { 10 }
}
// This function will need to get inlined, and badness may result.
pub fn welp<A>(x: A) -> A {
let a = a_struct { x: 0 };
a.g();
x
}