about summary refs log tree commit diff
path: root/src/test/compile-fail/borrowck-move-subcomponent.rs
AgeCommit message (Collapse)AuthorLines
2016-02-24Move the borrowck run-pass/compile-fail tests into their own directoriesNiko Matsakis-27/+0
as a test.
2015-01-08Update compile fail tests to use isize.Huon Wilson-1/+1
2015-01-07Test fixes and rebase conflictsAlex Crichton-0/+1
2014-05-06librustc: Remove `~EXPR`, `~TYPE`, and `~PAT` from the language, exceptPatrick Walton-6/+2
for `~str`/`~[]`. Note that `~self` still remains, since I forgot to add support for `Box<self>` before the snapshot. How to update your code: * Instead of `~EXPR`, you should write `box EXPR`. * Instead of `~TYPE`, you should write `Box<Type>`. * Instead of `~PATTERN`, you should write `box PATTERN`. [breaking-change]
2014-04-23Support unsized types with the `type` keywordNick Cameron-0/+3
2014-03-28Convert most code to new inner attribute syntax.Brian Anderson-1/+1
Closes #2569
2014-01-10librustc: Check restrictions on all subcomponents of a path when movingPatrick Walton-0/+27
it. r=nikomatsakis