diff options
| author | Jorge Aparicio <japaricious@gmail.com> | 2014-11-21 01:20:04 -0500 |
|---|---|---|
| committer | Jorge Aparicio <japaricious@gmail.com> | 2014-12-03 10:41:48 -0500 |
| commit | 09707d70a48b7bb1a180f44e233dfe36b196ad46 (patch) | |
| tree | 58baa2e18e0ac3f71d06bbaf38cdb08e8e67dcca /src/libcoretest | |
| parent | eac635de01d083e0423dcf9e548cf522ec41015d (diff) | |
| download | rust-09707d70a48b7bb1a180f44e233dfe36b196ad46.tar.gz rust-09707d70a48b7bb1a180f44e233dfe36b196ad46.zip | |
Fix fallout
Diffstat (limited to 'src/libcoretest')
| -rw-r--r-- | src/libcoretest/mem.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcoretest/mem.rs b/src/libcoretest/mem.rs index e4dde7c641e..75ddfd5413b 100644 --- a/src/libcoretest/mem.rs +++ b/src/libcoretest/mem.rs @@ -109,7 +109,7 @@ fn test_transmute() { } unsafe { - assert!(vec![76u8] == transmute("L".to_string())); + assert!(vec![76u8] == transmute::<_, Vec<u8>>("L".to_string())); } } |
