rust/src/test/auxiliary/crateresolve5-2.rs

11 lines
187 B
Rust
Raw Normal View History

#[link(name = "crateresolve5",
vers = "0.2")];
#[crate_type = "lib"];
fn structural() -> { name: str, val: int } {
{ name: "crateresolve5", val: 10 }
}
fn f() -> int { 20 }