blob: 24752114e9f5c51e5205277a2fc7375b658fc059 [file] [log] [blame]
// 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 => { }
}
}
}