Skip to content

Commit

Permalink
bug reproduction
Browse files Browse the repository at this point in the history
  • Loading branch information
disteph committed Apr 3, 2024
1 parent 1b1f404 commit 920703b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/api/issue_451.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,10 @@ main(void)
ctx = make_yices_context();

type_t p = yices_new_uninterpreted_type();
type_t s = yices_new_uninterpreted_term(p);
term_t s = yices_new_uninterpreted_term(p);

type_t pp = yices_function_type1(p, p);
type_t fun_p_to_p = yices_function_type1(p, p);
term_t pp = yices_new_uninterpreted_term(fun_p_to_p);

term_t c1 = yices_constant(p, 1);
term_t c2 = yices_constant(p, 2);
Expand Down

0 comments on commit 920703b

Please sign in to comment.