2014-02-07 19:08:32 +00:00
|
|
|
// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
|
2012-12-11 01:32:48 +00:00
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
2014-07-21 22:57:14 +00:00
|
|
|
//
|
|
|
|
// ignore-lexer-test FIXME #15883
|
2012-08-13 22:50:29 +00:00
|
|
|
|
2014-03-05 23:28:08 +00:00
|
|
|
|
2012-07-31 17:27:51 +00:00
|
|
|
trait to_str {
|
2014-06-21 10:39:03 +00:00
|
|
|
fn to_string_(&self) -> String;
|
2012-01-03 15:07:26 +00:00
|
|
|
}
|
|
|
|
|
2013-02-14 19:47:00 +00:00
|
|
|
impl to_str for int {
|
2014-06-21 10:39:03 +00:00
|
|
|
fn to_string_(&self) -> String { self.to_string() }
|
2012-01-03 15:07:26 +00:00
|
|
|
}
|
|
|
|
|
2014-03-05 22:02:44 +00:00
|
|
|
impl<T:to_str> to_str for Vec<T> {
|
2014-06-21 10:39:03 +00:00
|
|
|
fn to_string_(&self) -> String {
|
2014-05-28 03:44:58 +00:00
|
|
|
format!("[{}]",
|
|
|
|
self.iter()
|
2014-06-21 10:39:03 +00:00
|
|
|
.map(|e| e.to_string_())
|
2014-05-28 03:44:58 +00:00
|
|
|
.collect::<Vec<String>>()
|
|
|
|
.connect(", "))
|
2012-01-03 15:07:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-02 03:43:17 +00:00
|
|
|
pub fn main() {
|
2014-06-21 10:39:03 +00:00
|
|
|
assert!(1.to_string_() == "1".to_string());
|
2015-01-25 21:05:03 +00:00
|
|
|
assert!((vec!(2, 3, 4)).to_string_() == "[2, 3, 4]".to_string());
|
2012-01-03 15:37:41 +00:00
|
|
|
|
2014-05-22 23:57:53 +00:00
|
|
|
fn indirect<T:to_str>(x: T) -> String {
|
2014-06-21 10:39:03 +00:00
|
|
|
format!("{}!", x.to_string_())
|
2012-01-03 15:07:26 +00:00
|
|
|
}
|
2015-01-25 21:05:03 +00:00
|
|
|
assert!(indirect(vec!(10, 20)) == "[10, 20]!".to_string());
|
2012-01-03 15:37:41 +00:00
|
|
|
|
2014-05-22 23:57:53 +00:00
|
|
|
fn indirect2<T:to_str>(x: T) -> String {
|
2013-02-15 10:44:18 +00:00
|
|
|
indirect(x)
|
2012-01-03 15:37:41 +00:00
|
|
|
}
|
2015-01-25 21:05:03 +00:00
|
|
|
assert!(indirect2(vec!(1)) == "[1]!".to_string());
|
2012-01-03 15:07:26 +00:00
|
|
|
}
|