mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 17:28:07 +00:00
19 lines
319 B
Rust
19 lines
319 B
Rust
//@aux-build:extern_types.rs
|
|
#![allow(nonstandard_style, unused)]
|
|
#![warn(clippy::min_ident_chars)]
|
|
|
|
extern crate extern_types;
|
|
use extern_types::Aaa;
|
|
|
|
struct Owo {
|
|
Uwu: u128,
|
|
aaa: Aaa,
|
|
}
|
|
|
|
fn main() {
|
|
let wha = 1;
|
|
let vvv = 1;
|
|
let uuu = 1;
|
|
let (mut a, mut b) = (1, 2);
|
|
for i in 0..1000 {}
|
|
}
|