v/vlib/v/checker/tests/generic_sumtype_decl_err_a.vv

11 lines
92 B
V

struct Just<T> {
value T
}
struct Nothing {}
type Maybe = Nothing | Just
fn main() {
}