mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 21:53:23 +00:00
8 lines
122 B
Rust
8 lines
122 B
Rust
|
// issue 12436
|
||
|
#![allow(clippy::mixed_attributes_style)]
|
||
|
|
||
|
#[path = "auxiliary/submodule.rs"]
|
||
|
mod submodule;
|
||
|
|
||
|
fn main() {}
|