diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2014-01-31 18:25:08 -0800 |
|---|---|---|
| committer | Huon Wilson <dbau.pp+github@gmail.com> | 2014-02-02 01:44:50 +1100 |
| commit | c594e675eb3db25cd018d58d8fe06ef6ea2c90de (patch) | |
| tree | 4520d9b24ded21fcff4dfe3712de2665d3ed779f /src/libsyntax/util | |
| parent | 449a7a817ff58288084b49665d5186674255c949 (diff) | |
| download | rust-c594e675eb3db25cd018d58d8fe06ef6ea2c90de.tar.gz rust-c594e675eb3db25cd018d58d8fe06ef6ea2c90de.zip | |
librustc: Remove `@str` from the language
Diffstat (limited to 'src/libsyntax/util')
| -rw-r--r-- | src/libsyntax/util/interner.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/util/interner.rs b/src/libsyntax/util/interner.rs index e20efda9c6e..fc3e55dcde2 100644 --- a/src/libsyntax/util/interner.rs +++ b/src/libsyntax/util/interner.rs @@ -253,7 +253,7 @@ mod tests { #[test] fn i3 () { - let i : Interner<@~str> = Interner::prefill([ + let i : Interner<RcStr> = Interner::prefill([ RcStr::new("Alan"), RcStr::new("Bob"), RcStr::new("Carol") |
