fix: missing file

This commit is contained in:
Leonardo de Moura 2020-01-13 16:52:12 -08:00
parent 2f5f00ed4f
commit aedd59258b

View file

@ -0,0 +1,20 @@
/-
Copyright (c) 2020 Microsoft Corporation. All rights reserved.
Released under Apache 2.0 license as described in the file LICENSE.
Authors: Leonardo de Moura, Sebastian Ullrich
-/
prelude
import Init.Lean.Elab.Term
namespace Lean
namespace Elab
namespace Term
@[builtinTermElab tacticBlock] def elabTacticBlock : TermElab :=
fun stx _ =>
throwError stx ("not implemented yet " ++ stx)
end Term
end Elab
end Lean