11 lines
147 B
Rust
11 lines
147 B
Rust
#[link(name = "a", vers = "0.0")];
|
|
#[crate_type = "lib"];
|
|
|
|
iface i<T> { }
|
|
|
|
fn f<T>() -> i<T> {
|
|
impl <T> of i<T> for () { }
|
|
|
|
() as i::<T>
|
|
}
|