summary refs log tree commit diff
path: root/src/test/run-pass/class-separate-impl.rs
AgeCommit message (Collapse)AuthorLines
2012-07-02rustc: Implement a new resolve pass behind a compile flagPatrick Walton-0/+3
2012-06-14Remove an xfail-fast, as this seems to work on Windows nowTim Chevalier-2/+0
2012-05-02xfail-fast class-separate-implTim Chevalier-0/+2
2012-05-02Add test for issue 2287Tim Chevalier-0/+50
Test that it's possible to write "impl of B for A" outside a class, where A is a class type. This didn't require any extra work, but it's still good to have a regression test. Closes #2287