0

我有这个板条箱/src/lib.rs,我试图在其中运行测试:

#![crate_type = "lib"]
#![crate_name = "mycrate"]

pub mod mycrate {
    pub struct Struct {
        field: i32,
    }

    impl Struct {
        pub fn new(n: i32) -> Struct {
            Struct { field: n }
        }
    }
}

测试文件位于/tests/test.rs

extern crate mycrate;

use mycrate::*;

#[test]
fn test() {
    ...
}

运行cargo test给出了这个错误:

tests/test.rs:3:5: 3:16 error: import `mycrate` conflicts with imported crate in this module (maybe you meant `use mycrate::*`?) [E0254]
tests/test.rs:3 use mycrate::*;
                     ^~~~~~~~~

我在这里做错了什么?

4

1 回答 1

2

crate 也自动成为其自己名称的模块。所以你不需要指定一个子模块。由于您导入了mycratecrate 中的所有内容,因此您还导入了mycrate::mycrate模块,这导致了命名冲突。

只需将您的内容更改src/lib.rs

pub struct Struct {
    field: i32,
}

impl Struct {
    pub fn new(n: i32) -> Struct {
        Struct { field: n }
    }
}

也不需要crate_nameandcrate_type属性。

于 2016-01-11T14:32:31.383 回答