summary refs log tree commit diff
path: root/src/test/run-pass/issue_9155.rs
AgeCommit message (Collapse)AuthorLines
2014-02-14extern mod => extern crateAlex Crichton-1/+1
This was previously implemented, and it just needed a snapshot to go through
2014-02-11Change `xfail` directives in compiletests to `ignore`, closes #11363Florian Hahn-2/+2
2014-01-03test: Make all the run-pass tests use `pub fn main`Patrick Walton-1/+1
2013-11-14test: Clean up xfail-{fast,win32} testsklutzy-1/+1
Rename {struct-update,fsu}-moves-and-copies, since win32 failed to run the test since UAC prevents any executable whose name contaning "update". (#10452) Some tests related to #9205 are expected to fail on gcc 4.8, so they are marked as `xfail-win32` instead of `xfail-fast`. Some tests using `extra::tempfile` fail on win32 due to #10462. Mark them as `xfail-win32`.
2013-10-03Close out #9155Steven Fackler-0/+20
Add a test to make sure it works and switch a private struct over to a newtype. Closes #9155