Skip to content
Snippets Groups Projects
Commit 0ca4524a authored by Virgile Prevosto's avatar Virgile Prevosto
Browse files

[tests] reproduce crash of #1164

parent 6052c729
No related branches found
No related tags found
No related merge requests found
......@@ -94,3 +94,12 @@ void with_goto_unchanged(int c) {
L1: X++;
L2: X++;
}
enum e { t = 1 };
struct s { char c[t]; };
void se() {
struct s S;
S.c[0] = 1;
}
......@@ -87,3 +87,12 @@ void with_goto_unchanged(int c) {
L1: X++;
L2: X++;
}
enum e { t = 1 };
struct s { char c[t]; };
void se() {
struct s S;
S.c[0] = 1;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment