Closed michael-projectx closed 1 year ago
Currently something like:
proto my_proto { foo = "bar" var = 1 } reference my_proto as my_struct { }
will fail. The current workaround is to add +dummy = 0 or something similar within the curly braces of the reference.
+dummy = 0
An alternative would be to add an explicit keyword that allows to "copy" or "duplicate" a specific struct that has already been defined.
Currently something like:
will fail. The current workaround is to add
+dummy = 0
or something similar within the curly braces of the reference.An alternative would be to add an explicit keyword that allows to "copy" or "duplicate" a specific struct that has already been defined.