blob: 83cea8b4395802094eec83e22b12e5f98acec817 [file] [log] [blame]
// run-pass
#[derive(Debug)]
#[allow(dead_code)]
struct Pair<T, V> (T, V);
impl Pair<
&str,
isize
> {
fn say(&self) {
println!("{:?}", self);
}
}
fn main() {
let result = &Pair("shane", 1);
result.say();
}