parent
123fd801cb
commit
cce2d3500e
2 changed files with 18 additions and 0 deletions
10
tests/lean/1301.lean
Normal file
10
tests/lean/1301.lean
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
syntax "tac" : tactic
|
||||
theorem a : True := by tac
|
||||
#check a -- should be declared
|
||||
|
||||
theorem a' : True ∧ True := ⟨by tac, by tac⟩
|
||||
#check a' -- should be declared
|
||||
|
||||
syntax "term" : term
|
||||
def b (n : Nat) : Nat := term
|
||||
#print b -- should be declared
|
||||
8
tests/lean/1301.lean.expected.out
Normal file
8
tests/lean/1301.lean.expected.out
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
1301.lean:2:23-2:26: error: tactic 'tacticTac' has not been implemented
|
||||
a : True
|
||||
1301.lean:5:32-5:35: error: tactic 'tacticTac' has not been implemented
|
||||
a' : True ∧ True
|
||||
1301.lean:9:25-9:29: error: elaboration function for 'termTerm' has not been implemented
|
||||
term
|
||||
def b : Nat → Nat :=
|
||||
sorryAx (Nat → Nat) true
|
||||
Loading…
Add table
Reference in a new issue