about summary refs log tree commit diff
path: root/tests/ui/issues/issue-4542.rs
blob: 15fd31d92d297970c3c88b7d4003a6fc6b21b8c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
//@ run-pass

use std::env;

pub fn main() {
    for arg in env::args() {
        match arg.clone() {
            _s => { }
        }
    }
}