Skip to content

Commit

Permalink
03/36: Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-schwarz committed Mar 3, 2025
1 parent 55fa6bd commit b05e305
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions tests/regression/03-practical/36-struct-ptr.c
Original file line number Diff line number Diff line change
@@ -1,21 +1,20 @@
#include <goblint.h>
struct aws_al {
unsigned long current_size;
};
};

struct aws_pq {
int pred;
struct aws_al container;
};
struct aws_pq {
int pred;
struct aws_al container;
};

int main() {
int main() {
struct aws_pq queue = { 0, { 0}};
struct aws_al *const list = &queue.container;

if (list->current_size == 0UL) {
if (list->current_size == 0UL)
{
if (list->current_size == 0UL) {
__goblint_check(1); //REACHABLE
}
}
}
}

0 comments on commit b05e305

Please sign in to comment.