chore(tests/lean/run/coroutine): abbreviate abbreviation

This commit is contained in:
Sebastian Ullrich 2019-08-09 11:04:02 +02:00
parent 934054b8d0
commit 8f55517d8c

View file

@ -17,7 +17,7 @@ inductive coroutineResultCore (coroutine : Type (max u v w)) (α : Type u) (δ :
inductive coroutine (α : Type u) (δ : Type v) (β : Type w) : Type (max u v w)
| mk {} : (α → coroutineResultCore coroutine α δ β) → coroutine
abbreviation coroutineResult (α : Type u) (δ : Type v) (β : Type w) : Type (max u v w) :=
abbrev coroutineResult (α : Type u) (δ : Type v) (β : Type w) : Type (max u v w) :=
coroutineResultCore (coroutine α δ β) α δ β
namespace coroutine