Skip to content

Commit

Permalink
Do not comment lines
Browse files Browse the repository at this point in the history
  • Loading branch information
sakehl committed Jan 23, 2024
1 parent 7c77722 commit 0bf3c78
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/main/vct/test/integration/examples/CSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -382,10 +382,10 @@ class CSpec extends VercorsSpec {
int *ip = NULL;
double *dp = NULL;
struct nested *np = NULL;
// np = (struct nested*) NULL;
np = (struct nested*) NULL;
np = (struct nested*) malloc(sizeof(struct nested));
// np->inner = NULL;
// np->inner = (struct nested*) NULL;
np->inner = NULL;
np->inner = (struct nested*) NULL;
}
"""
}

0 comments on commit 0bf3c78

Please sign in to comment.