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

incorrect warning "uninitialized object " #193

Closed thradams closed 1 week ago

thradams commented 2 months ago
#pragma safety enable
void f(_Out int *i);
int main(){
    int i;
    f(&i);
}