mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
21 lines
381 B
Rust
21 lines
381 B
Rust
pub use crate::extern_exports::*;
|
|
|
|
pub fn extern_foo() {}
|
|
pub fn extern_bar() {}
|
|
|
|
pub struct ExternA;
|
|
|
|
pub mod inner {
|
|
pub mod inner_for_self_import {
|
|
pub fn inner_extern_foo() {}
|
|
pub fn inner_extern_bar() {}
|
|
}
|
|
}
|
|
|
|
mod extern_exports {
|
|
pub fn extern_exported() {}
|
|
pub struct ExternExportedStruct;
|
|
pub enum ExternExportedEnum {
|
|
A,
|
|
}
|
|
}
|