about summary refs log tree commit diff
path: root/src/test/compile-fail/feature-gate-box-expr.rs
AgeCommit message (Collapse)AuthorLines
2017-12-07Migrate a few feature gate tests to uiest31-24/+0
Renames only in this commit, and obviously .stderr file additions.
2017-01-12Mark even more tests as gate testsest31-0/+2
Now, no feature outside of the whitelist is without a test marked as its gate test.
2015-09-24Remove the deprecated box(PLACE) syntax.Eduard Burtescu-4/+0
2015-07-27Turn on `box(PLACE) expr` deprecation warning post-snapshot.Eduard Burtescu-0/+1
2015-07-22Factor feature gate tests for box syntax into two separate files.Felix S. Klock II-8/+8
The two tests are separate since the current implementation performs the feature gate checks at distinct phases in the compilation, with an `abort_if_errors` calls separating them.
2015-07-22Add feature-gates for desugaring-based `box` and placement-`in`.Felix S. Klock II-1/+4
update test/compile-fail/feature-gate-box-expr.rs to reflect new feature gates. Part of what lands with Issue 22181.
2015-03-15Strip all leading/trailing newlinesTamir Duberstein-1/+0
2015-02-11Generalize all error messages with "experimental in alpha release" toFelix S. Klock II-3/+3
just say "experimental."
2015-01-08Test that box syntax, both in expressions and patterns, is caught byFelix S. Klock II-0/+23
feature gate net. fix typo in my feature-gate-box-expr.rs test.