about summary refs log tree commit diff
path: root/src/test/compile-fail/uninit-after-item.rs
AgeCommit message (Collapse)AuthorLines
2011-08-03Remove all xfail-stage0 directivesBrian Anderson-1/+0
While it is still technically possible to test stage 0, it is not part of any of the main testing rules and maintaining xfail-stage0 is a chore. Nobody should worry about how tests fare in stage0.
2011-07-27Reformat for new syntaxMarijn Haverbeke-2/+2
2011-07-12Change typestate to use visit instead of walkTim Chevalier-0/+8
Typestate was failing to check some code because if it saw an item, it would quit immediately. This was to avoid checking nested items in the same context as the lexically enclosing item, but it was having the wrong effect: not checking the code after the item at all. Fixed by switching to visit and skipping over items in a proper nested fashion. Closes #668.