| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2018-08-14 | Moved compile-fail tests to ui tests. | David Wood | -26/+0 | |
| 2018-03-02 | Update compile fail test error messages | Jonathan Behrens | -4/+4 | |
| 2017-03-22 | Fix the tests | Simonas Kazlauskas | -4/+4 | |
| 2016-11-26 | Overload get{,_mut}{,_unchecked} | Steven Fackler | -4/+4 | |
| 2016-10-31 | Changed most vec! invocations to use square braces | iirelu | -1/+1 | |
| Most of the Rust community agrees that the vec! macro is clearer when called using square brackets [] instead of regular brackets (). Most of these ocurrences are from before macros allowed using different types of brackets. There is one left unchanged in a pretty-print test, as the pretty printer still wants it to have regular brackets. | ||||
| 2016-04-05 | suggest adding a where-clause when that can help | Ariel Ben-Yehuda | -8/+8 | |
| suggest adding a where-clause when there is an unmet trait-bound that can be satisfied if some type can implement it. | ||||
| 2016-03-30 | Fix fallout in tests | Jeffrey Seyfried | -8/+8 | |
| 2015-09-26 | deduplicate trait errors before they are displayed | Ariel Ben-Yehuda | -8/+0 | |
| Because of type inference, duplicate obligations exist and cause duplicate errors. To avoid this, only display the first error for each (predicate,span). The inclusion of the span is somewhat bikesheddy, but *is* the more conservative option (it does not remove some instability, as duplicate obligations are ignored by `duplicate_set` under some inference conditions). Fixes #28098 cc #21528 (is it a dupe?) | ||||
| 2015-03-16 | Consistent spacing | Tamir Duberstein | -4/+4 | |
| 2015-02-18 | Update suffixes en masse in tests using `perl -p -i -e` | Niko Matsakis | -2/+2 | |
| 2015-02-05 | cleanup: replace `as[_mut]_slice()` calls with deref coercions | Jorge Aparicio | -6/+6 | |
| 2015-01-08 | Update compile-fail tests to use is/us, not i/u. | Huon Wilson | -2/+2 | |
| 2015-01-08 | Update compile fail tests to use isize. | Huon Wilson | -1/+1 | |
| 2015-01-07 | fallout | Nick Cameron | -12/+20 | |
| 2014-07-01 | rustc: Remove `&str` indexing from the language. | Brian Anderson | -6/+6 | |
| Being able to index into the bytes of a string encourages poor UTF-8 hygiene. To get a view of `&[u8]` from either a `String` or `&str` slice, use the `as_bytes()` method. Closes #12710. [breaking-change] | ||||
| 2014-05-27 | std: Rename strbuf operations to string | Richo Healey | -1/+1 | |
| [breaking-change] | ||||
| 2014-05-24 | core: rename strbuf::StrBuf to string::String | Richo Healey | -1/+1 | |
| [breaking-change] | ||||
| 2014-05-14 | test: Remove all uses of `~str` from the test suite. | Patrick Walton | -7/+7 | |
| 2014-04-18 | Replace all ~"" with "".to_owned() | Richo Healey | -1/+1 | |
| 2014-04-02 | Fix fallout of requiring uint indices | Alex Crichton | -0/+26 | |
