Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/tools/lint/test/files/clippy/test2/src/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 287 B image not shown  

Quelle  bad_1.rs   Sprache: unbekannt

 
mod bad_2;

fn main() {
    // Statements here are executed when the compiled binary is called

    // Print text to the console
    println!("Hello World!");
    // Clippy detects this as a swap and considers this as an error
    let mut a=1;
    let mut b=1;

    a = b;
    b = a;

}

[ Dauer der Verarbeitung: 0.11 Sekunden  (vorverarbeitet)  ]