vscode-idris icon indicating copy to clipboard operation
vscode-idris copied to clipboard

make-lemma seem don't work

Open jiamo opened this issue 6 years ago • 0 comments

Here is the example:

isOdd' : Nat -> Bool
isOdd' Z = ?isOdd'_rhs_1
isOdd' (S k) = ?isOdd'_rhs_2

when you put cursor in isOdd' make-lemma got

isOdd' : Nat -> Bool

isOdd' : Nat -> Bool
isOdd' Z = ?isOdd'_rhs_1
isOdd' (S k) = '_rhs_2

when you put cursor in rhs_2 make-lemma got Errors (0)

jiamo avatar Jun 07 '18 02:06 jiamo