359c72b02f
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
7 lines
412 B
Text
7 lines
412 B
Text
check λ {A : Type.{1}} (B : Type.{1}) (a : A) (b : B), a
|
|
check λ {A : Type.{1}} {B : Type.{1}} (a : A) (b : B), a
|
|
check λ (A : Type.{1}) {B : Type.{1}} (a : A) (b : B), a
|
|
check λ (A : Type.{1}) (B : Type.{1}) (a : A) (b : B), a
|
|
check λ [A : Type.{1}] (B : Type.{1}) (a : A) (b : B), a
|
|
check λ {{A : Type.{1}}} {B : Type.{1}} (a : A) (b : B), a
|
|
check λ {{A : Type.{1}}} {{B : Type.{1}}} (a : A) (b : B), a
|