mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
21 lines
328 B
Rust
21 lines
328 B
Rust
// run-pass
|
|
#![allow(dead_code)]
|
|
#![allow(unused_variables)]
|
|
// pretty-expanded FIXME #23616
|
|
|
|
enum StdioContainer {
|
|
CreatePipe(bool)
|
|
}
|
|
|
|
struct Test<'a> {
|
|
args: &'a [String],
|
|
io: &'a [StdioContainer]
|
|
}
|
|
|
|
pub fn main() {
|
|
let test = Test {
|
|
args: &[],
|
|
io: &[StdioContainer::CreatePipe(true)]
|
|
};
|
|
}
|