thradams / cake

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

Missing error on duplicated types inside _Generic #108

Open thradams opened 7 months ago

thradams commented 7 months ago
int main(){
    int a;
    _Generic(a, int : 1, int : 1);   
}

Should be an error.