summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui-toml/min_ident_chars/min_ident_chars.rs
blob: 4326c7159c8326aefc2dd98fb3cfb1312baa3f3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//@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 {}
}