test: add new_frontend command test

This commit is contained in:
Leonardo de Moura 2020-01-06 21:02:25 -08:00
parent e0ae6068d4
commit 4b37c5ad04

View file

@ -0,0 +1,17 @@
def x := 1
new_frontend
#check x
variables {α : Type}
def f (a : α) : α :=
a
def tst (xs : List Nat) : Nat :=
xs.foldl (init := 10) (· + ·)
#check tst [1, 2, 3]
#check tst