thradams / cake

Cake a C23 front end and transpiler written in C
http://thradams.com/cake/index.html
GNU General Public License v3.0
533 stars 21 forks source link

missing warning with enumerator to big for its size #177

Open thradams opened 6 months ago

thradams commented 6 months ago
int main() {
enum Color: char { red = 0x7e, green, blue }; // 0x7e is too big
enum Color2: char { red2 = 0x7d, green2, blue2}; // OK
}