about summary refs log tree commit diff
path: root/src/test/compile-fail/syntax-extension-minor.rs
AgeCommit message (Collapse)AuthorLines
2018-08-14Moved compile-fail tests to ui tests.David Wood-24/+0
2017-01-12resolve: Do not use "resolve"/"resolution" in error messagesVadim Petrochenkov-1/+1
2016-12-26More systematic error reporting in path resolutionVadim Petrochenkov-1/+1
2016-08-26Stabilize type-macrosDaniele Baracchi-1/+1
Closes #27245
2016-05-19Allow `concat_idents!` in type positions as well as in expression positionsJeffrey Seyfried-3/+6
2015-12-11Make name resolution errors non-fatalNick Cameron-1/+1
2015-06-13Use `assert_eq!` instead of `assert!` in testspetrochenkov-2/+1
2014-05-27std: Remove String's to_ownedRicho Healey-2/+2
2014-04-18Replace all ~"" with "".to_owned()Richo Healey-2/+2
2014-04-04rustc: feature-gate `concat_idents!`.Huon Wilson-0/+1
concat_idents! is not as useful as it could be, due to macros only being allowed in limited places, and hygiene, so lets feature gate it until we make a decision about it. cc #13294
2014-02-25test: Clean out the test suite a bitAlex Crichton-0/+21
This updates a number of ignore-test tests, and removes a few completely outdated tests due to the feature being tested no longer being supported. This brings a number of bench/shootout tests up to date so they're compiling again. I make no claims to the performance of these benchmarks, it's just nice to not have bitrotted code. Closes #2604 Closes #9407