Welcome to mirror list, hosted at ThFree Co, Russian Federation.

vla.c « cmake - gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 05b211979ed4799a7e28a6b430e815a48a97a04d (plain)
1
2
3
4
5
6
7
int main() {
    static int x;
    char a[++x];
    a[sizeof a - 1] = 0;
    int N;
    return a[0];
}