]> git.lizzy.rs Git - rust.git/blob - tests/ui/issues/issue-4542.rs
Rollup merge of #106860 - anden3:doc-double-spaces, r=Dylan-DPC
[rust.git] / tests / ui / issues / issue-4542.rs
1 // run-pass
2 // pretty-expanded FIXME #23616
3
4 use std::env;
5
6 pub fn main() {
7     for arg in env::args() {
8         match arg.clone() {
9             _s => { }
10         }
11     }
12 }