diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2014-05-12 17:56:43 -0700 |
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2014-05-14 14:58:00 -0700 |
| commit | 95e310abdcbfe0f5ad511258097624719cbc84db (patch) | |
| tree | 31ee8e4157dbc7b8fe5b8d4abb34601fa863f7d2 /src/test/debuginfo | |
| parent | 2a7a39191a83fc2a63df6cb47acd344ae669d9c7 (diff) | |
| download | rust-95e310abdcbfe0f5ad511258097624719cbc84db.tar.gz rust-95e310abdcbfe0f5ad511258097624719cbc84db.zip | |
test: Remove all uses of `~str` from the test suite.
Diffstat (limited to 'src/test/debuginfo')
| -rw-r--r-- | src/test/debuginfo/issue11600.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/debuginfo/issue11600.rs b/src/test/debuginfo/issue11600.rs index 426a40bf8bd..915ccab7700 100644 --- a/src/test/debuginfo/issue11600.rs +++ b/src/test/debuginfo/issue11600.rs @@ -13,7 +13,7 @@ // ignore-test fn main() { - let args : ~[~str] = ::std::os::args(); + let args : ~[StrBuf] = ::std::os::args(); ::std::io::println(args[0]); } @@ -25,6 +25,6 @@ fn main() { // compile-flags:-g // gdb-command:list // gdb-check:1[...]fn main() { -// gdb-check:2[...]let args : ~[~str] = ::std::os::args(); +// gdb-check:2[...]let args : ~[StrBuf] = ::std::os::args(); // gdb-check:3[...]::std::io::println(args[0]); // gdb-check:4[...]} |
