]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/issue-2316-c.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / issue-2316-c.rs
index cc859ff3be5848349935455092d30b563277a91f..a6fac423bb6772f1ea86a1de55e6447df7453db1 100644 (file)
@@ -8,13 +8,12 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// ignore-fast - check-fast doesn't understand aux-build
 // aux-build:issue_2316_a.rs
 // aux-build:issue_2316_b.rs
 
-extern mod issue_2316_b;
+extern crate issue_2316_b;
 use issue_2316_b::cloth;
 
 pub fn main() {
-  let _c: cloth::fabric = cloth::calico;
+  let _c: cloth::fabric = cloth::fabric::calico;
 }