]> git.proxmox.com Git - rustc.git/blob - src/test/ui/structs-enums/variant-structs-trivial.rs
New upstream version 1.67.1+dfsg1
[rustc.git] / src / test / ui / structs-enums / variant-structs-trivial.rs
1 // run-pass
2 #![allow(dead_code)]
3 // pretty-expanded FIXME #23616
4
5 enum Foo {
6 Bar { x: isize },
7 Baz { y: isize }
8 }
9
10 pub fn main() { }