icerpc / slicec

The Slice compiler library
Apache License 2.0
13 stars 5 forks source link

Recursive enum #683

Closed bernardnormier closed 9 months ago

bernardnormier commented 9 months ago

The Slice parser should reject recursive enums. It currently accepts them.

For example:

enum Color { Red, White, Blue, Other(replacement: Color) }