lean4-htt/src/Lean/Compiler/BorrowedAnnotation.lean
2025-07-25 12:02:51 +00:00

20 lines
390 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
-/
module
prelude
public import Lean.Expr
public section
namespace Lean
def markBorrowed (e : Expr) : Expr :=
mkAnnotation `borrowed e
def isMarkedBorrowed (e : Expr) : Bool :=
annotation? `borrowed e |>.isSome
end Lean