about summary refs log tree commit diff
path: root/src/test/run-pass/deprecated-no-split-stack.rs
AgeCommit message (Collapse)AuthorLines
2015-03-18rustc: Remove some long deprecated features:Alex Crichton-14/+0
* no_split_stack was renamed to no_stack_check * deriving was renamed to derive * `use foo::mod` was renamed to `use foo::self`; * legacy lifetime definitions in closures have been replaced with `for` syntax * `fn foo() -> &A + B` has been deprecated for some time (needs parens) * Obsolete `for Sized?` syntax * Obsolete `Sized? Foo` syntax * Obsolete `|T| -> U` syntax
2014-10-09Rename the no_split_stack attribute to no_stack_checkKeegan McAllister-0/+14
The old name is misleading as we haven't had segmented stacks in quite some time. But we still recognize it, with a deprecation warning.