Skip to content

Commit

Permalink
test for definition-in
Browse files Browse the repository at this point in the history
  • Loading branch information
jsiek committed Jan 7, 2025
1 parent c28aec5 commit 4ddebe2
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions test/should-pass/definition_in.pf
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import Nat

define x = 0
define y = 1

theorem T: all z:Nat. if z = x + y then z = 1
proof
arbitrary z:Nat
assume zxy: z = x + y
definition {x,y,operator+} in zxy
end

0 comments on commit 4ddebe2

Please sign in to comment.