test(tests/lean/run): add basic tests for subst action
This commit is contained in:
parent
33036befc6
commit
65b962dabd
1 changed files with 10 additions and 0 deletions
10
tests/lean/run/blast5.lean
Normal file
10
tests/lean/run/blast5.lean
Normal file
|
@ -0,0 +1,10 @@
|
|||
set_option blast.init_depth 10
|
||||
|
||||
example (a b : nat) : a = b → b = a :=
|
||||
by blast
|
||||
|
||||
example (a b c : nat) : a = b → a = c → b = c :=
|
||||
by blast
|
||||
|
||||
example (p : nat → Prop) (a b c : nat) : a = b → a = c → p b → p c :=
|
||||
by blast
|
Loading…
Reference in a new issue