blob: 24752114e9f5c51e5205277a2fc7375b658fc059 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// run-pass
// pretty-expanded FIXME #23616
// ignore-cloudabi no std::env
use std::env;
pub fn main() {
for arg in env::args() {
match arg.clone() {
_s => { }
}
}
}
|