c2lang / c2compiler

the c2 programming language
c2lang.org
Apache License 2.0
704 stars 49 forks source link

Enum type cannot be an alias #104

Open lerno opened 5 years ago

lerno commented 5 years ago

The following code gives an error, even though it's correct:

type Foo i32;

type Bar enum Foo
{
  Baz
}

This is due to C2C disallowing any alias as enum type.