about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorSeo Sanghyeon <sanxiyn@gmail.com>2013-11-11 21:53:14 +0900
committerSeo Sanghyeon <sanxiyn@gmail.com>2013-11-11 21:53:14 +0900
commit2337d88339c10b485d4e121ffabc8d9a89431a82 (patch)
tree1c08a2597c56731357175d59c81061ea73e413ee /src/libstd
parent46100c06223f737a7604b46667800ed42cf20d3b (diff)
downloadrust-2337d88339c10b485d4e121ffabc8d9a89431a82.tar.gz
rust-2337d88339c10b485d4e121ffabc8d9a89431a82.zip
Fix path parsing
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/any.rs2
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());
     }