Skip to content

Commit

Permalink
minor -> fix rewrite issue-32.bpl
Browse files Browse the repository at this point in the history
  • Loading branch information
gauravpartha committed Dec 4, 2024
1 parent 57c6b52 commit effb107
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
//:: ProofGen(IgnoreFile)
// RUN: %boogie "%s" > "%t"
// RUN: %diff "%s.expect" "%t"
function Lit<T>(x: T) : T;
axiom Lit(true);
function LitA<T>(x: T) : T; //renamed Lit to LitA to avoid Isabelle Lit clash

/** MANUEL REWRITE renamed Lit to LitA to avoid Isabelle Lit clash **/
function LitA<T>(x: T) : T;
axiom LitA(true);

procedure test()
Expand Down

0 comments on commit effb107

Please sign in to comment.