Skip to content

Commit 3e5f2e2

Browse files
committed
---
yaml --- r: 171078 b: refs/heads/try c: 55c6a68 h: refs/heads/master v: v3
1 parent ce4e604 commit 3e5f2e2

File tree

2 files changed

+63
-1
lines changed

2 files changed

+63
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: 73a25f55ad748b4d3516417c711b99ce446591af
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 5b3cd3900ceda838f5798c30ab96ceb41f962534
5-
refs/heads/try: 4dd368b90a8d53af1ce582ec45d03a70d8fe2051
5+
refs/heads/try: 55c6a68f1184eefb9e475b5f58272931688d2bc9
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
88
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
// Test associated type references in structure fields.
12+
13+
trait Test {
14+
type V;
15+
16+
fn test(&self, value: &Self::V) -> bool;
17+
}
18+
19+
///////////////////////////////////////////////////////////////////////////
20+
21+
struct TesterPair<T:Test> {
22+
tester: T,
23+
value: T::V,
24+
}
25+
26+
impl<T:Test> TesterPair<T> {
27+
fn new(tester: T, value: T::V) -> TesterPair<T> {
28+
TesterPair { tester: tester, value: value }
29+
}
30+
31+
fn test(&self) -> bool {
32+
self.tester.test(&self.value)
33+
}
34+
}
35+
36+
///////////////////////////////////////////////////////////////////////////
37+
38+
struct EqU32(u32);
39+
impl Test for EqU32 {
40+
type V = u32;
41+
42+
fn test(&self, value: &u32) -> bool {
43+
self.0 == *value
44+
}
45+
}
46+
47+
struct EqI32(i32);
48+
impl Test for EqI32 {
49+
type V = i32;
50+
51+
fn test(&self, value: &i32) -> bool {
52+
self.0 == *value
53+
}
54+
}
55+
56+
fn main() {
57+
let tester = TesterPair::new(EqU32(22), 23);
58+
tester.test();
59+
60+
let tester = TesterPair::new(EqI32(22), 23);
61+
tester.test();
62+
}

0 commit comments

Comments
 (0)