diff options
| author | bors <bors@rust-lang.org> | 2013-11-16 14:36:40 -0800 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-11-16 14:36:40 -0800 |
| commit | b0e1318164f6b496c513a93fd745faabfd225ef5 (patch) | |
| tree | f33caab27e888a5a774464b4f7a0b30d821ecfe7 /src/libstd | |
| parent | 90754ae9c95c18841c0200d77da917af5ecde5ee (diff) | |
| parent | 2337d88339c10b485d4e121ffabc8d9a89431a82 (diff) | |
| download | rust-b0e1318164f6b496c513a93fd745faabfd225ef5.tar.gz rust-b0e1318164f6b496c513a93fd745faabfd225ef5.zip | |
auto merge of #10420 : sanxiyn/rust/path, r=cmr
Fix #10283.
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/any.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/any.rs b/src/libstd/any.rs index 76996c0dede..e02bf9f4ba8 100644 --- a/src/libstd/any.rs +++ b/src/libstd/any.rs @@ -207,7 +207,7 @@ mod tests { #[test] fn type_id_hash() { - let (a, b) = (TypeId::of::<uint>(), TypeId::of::<uint>::()); + let (a, b) = (TypeId::of::<uint>(), TypeId::of::<uint>()); assert_eq!(a.hash(), b.hash()); } |
