about summary refs log tree commit diff
path: root/tests/ui/structs-enums/variant-structs-trivial.rs
blob: a7b0575118437eca49734ed98ffed56cc631ec80 (plain)
1
2
3
4
5
6
7
8
9
//@ run-pass
#![allow(dead_code)]

enum Foo {
    Bar { x: isize },
    Baz { y: isize }
}

pub fn main() { }