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