lean4-htt/tests/lean/sepByIndentQuot.lean
Sebastian Ullrich 3a56db2812 chore: fix tests
2022-06-27 22:37:02 +02:00

16 lines
364 B
Text

import Lean
open Lean Elab
#eval show TermElabM _ from do
let x := mkIdent `x
let xs := #[x,x,x,x]
let ys := xs
PrettyPrinter.ppTerm <|<-
`(frobnicate { $[$xs:ident := $ys:term],* })
#eval show TermElabM _ from do
let x := mkIdent `x
let xs := #[x,x,x,x]
let ys := xs
PrettyPrinter.ppTerm <|<-
`(frobnicate { $[$xs:ident := $ys:term]* })