Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/libcollections/string.rs
Original file line number Diff line number Diff line change
Expand Up @@ -932,7 +932,7 @@ pub trait ToString {
fn to_string(&self) -> String;
}

impl<T: fmt::String> ToString for T {
impl<T: fmt::String + ?Sized> ToString for T {
fn to_string(&self) -> String {
use core::fmt::Writer;
let mut buf = String::new();
Expand Down Expand Up @@ -994,6 +994,12 @@ mod tests {
assert_eq!(owned.as_ref().map(|s| s.as_slice()), Some("string"));
}

#[test]
fn test_unsized_to_string() {
let s: &str = "abc";
let _: String = (*s).to_string();
}

#[test]
fn test_from_utf8() {
let xs = b"hello".to_vec();
Expand Down