diff options
| author | bors <bors@rust-lang.org> | 2014-05-14 19:31:52 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-05-14 19:31:52 -0700 |
| commit | e10fd317211511c3fb4656aee10eb4fd17dc8586 (patch) | |
| tree | 751c444f333d465d11aa20ae6bbd377755bf8aa3 /src/test/run-pass/nullable-pointer-iotareduction.rs | |
| parent | 2a7a39191a83fc2a63df6cb47acd344ae669d9c7 (diff) | |
| parent | 351a564df5d62175696a1f87c40629f212f1ee1e (diff) | |
| download | rust-e10fd317211511c3fb4656aee10eb4fd17dc8586.tar.gz rust-e10fd317211511c3fb4656aee10eb4fd17dc8586.zip | |
auto merge of #14170 : pcwalton/rust/detildestr-misclibs, r=alexcrichton
r? @brson
Diffstat (limited to 'src/test/run-pass/nullable-pointer-iotareduction.rs')
| -rw-r--r-- | src/test/run-pass/nullable-pointer-iotareduction.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/nullable-pointer-iotareduction.rs b/src/test/run-pass/nullable-pointer-iotareduction.rs index 728c0154a90..1618f11914b 100644 --- a/src/test/run-pass/nullable-pointer-iotareduction.rs +++ b/src/test/run-pass/nullable-pointer-iotareduction.rs @@ -76,7 +76,7 @@ pub fn main() { check_type!(&17: &int); check_type!(box 18: Box<int>); check_type!(@19: @int); - check_type!("foo".to_owned(): ~str); + check_type!("foo".to_strbuf(): StrBuf); check_type!(vec!(20, 22): Vec<int> ); let mint: uint = unsafe { mem::transmute(main) }; check_type!(main: fn(), |pthing| { |
