google / pdl

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Implement support for structure inheritance in the rust generator

hchataing opened this issue · comments

The following grammar is not supported:

struct Parent {
    x: 8,
    _payload_,
}

struct Child : Parent {
    y: 8
}