about summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
Diffstat (limited to 'src/test')
-rw-r--r--src/test/run-pass/issue-9446.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/test/run-pass/issue-9446.rs b/src/test/run-pass/issue-9446.rs
index 0a0d64e122c..e97960b3f02 100644
--- a/src/test/run-pass/issue-9446.rs
+++ b/src/test/run-pass/issue-9446.rs
@@ -8,8 +8,6 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// xfail-test
-
 struct Wrapper(~str);
 
 impl Wrapper {
@@ -26,7 +24,7 @@ impl Drop for Wrapper {
     fn drop(&mut self) {}
 }
 
-fn main() {
+pub fn main() {
     {
         // This runs without complaint.
         let x = Wrapper::new(~"Bob");