16 lines
347 B
Text
16 lines
347 B
Text
/-
|
|
Copyright (c) 2020 Microsoft Corporation. All rights reserved.
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
Authors: Leonardo de Moura
|
|
-/
|
|
import Lean.Elab.PreDefinition.Basic
|
|
|
|
namespace Lean
|
|
namespace Elab
|
|
open Meta
|
|
|
|
def WFRecursion (preDefs : Array PreDefinition) : TermElabM Unit :=
|
|
throwError "WIP"
|
|
|
|
end Elab
|
|
end Lean
|