about summary refs log tree commit diff
path: root/src/test/compile-fail-fulldeps/syntax-extension-regex-unused.rs
AgeCommit message (Collapse)AuthorLines
2015-01-03Remove deprecated functionalityAlex Crichton-26/+0
This removes a large array of deprecated functionality, regardless of how recently it was deprecated. The purpose of this commit is to clean out the standard libraries and compiler for the upcoming alpha release. Some notable compiler changes were to enable warnings for all now-deprecated command line arguments (previously the deprecated versions were silently accepted) as well as removing deriving(Zero) entirely (the trait was removed). The distribution no longer contains the libtime or libregex_macros crates. Both of these have been deprecated for some time and are available externally.
2014-10-28Update code with new lint namesAaron Turon-1/+1
2014-08-18regex: Enable test on Windowsklutzy-2/+0
Fixes #13725
2014-08-12Replace "ignore-win32" in tests with "ignore-windows"Vadim Chugunov-1/+1
2014-06-09Use phase(plugin) in testsKeegan McAllister-1/+1
2014-06-04Fixes #14185.Andrew Gallant-0/+28
This fix suppresses dead_code warnings from code generated by regex! when the result of regex! is unused. Correct behavior should be a single unused variable warning. Regression tests are included for both `let` and `static` bound regex! values.