7 lines
389 B
Text
7 lines
389 B
Text
prelude set_option pp.beta false check λ {A : Type} (B : Type) (a : A) (b : B), a
|
|
check λ {A : Type} {B : Type} (a : A) (b : B), a
|
|
check λ (A : Type) {B : Type} (a : A) (b : B), a
|
|
check λ (A : Type) (B : Type) (a : A) (b : B), a
|
|
check λ [A : Type] (B : Type) (a : A) (b : B), a
|
|
check λ {{A : Type}} {B : Type} (a : A) (b : B), a
|
|
check λ {{A : Type}} {{B : Type}} (a : A) (b : B), a
|