]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/overloaded-autoderef-xcrate.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / overloaded-autoderef-xcrate.rs
index fc969093d23a913f25fbecb2dc3d3b12104e028b..4f449b344e3f8bf84dad28cb442896536c4b1e75 100644 (file)
@@ -8,11 +8,10 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// ignore-fast
 // aux-build:overloaded_autoderef_xc.rs
 
 extern crate overloaded_autoderef_xc;
 
 fn main() {
-    assert!(overloaded_autoderef_xc::check(5, 5));
+    assert!(overloaded_autoderef_xc::check(5i, 5i));
 }