blob: 95133a4584430b13fdaec66ee02b2511beb548d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// run-pass
#[derive(Debug)]
struct Pair<T, V> (T, V);
impl Pair<
&str,
isize
> {
fn say(&self) {
println!("{:?}", self);
}
}
fn main() {
let result = &Pair("shane", 1);
result.say();
}
|