mirror of
https://github.com/anoma/juvix.git
synced 2024-12-04 06:23:13 +03:00
58dbf62520
* Closes #1930
6 lines
124 B
Plaintext
6 lines
124 B
Plaintext
-- polymorphic type arguments
|
|
|
|
def id : Π A : Type, A → A := \(A : Type) \(x : A) x;
|
|
|
|
id (Π A : Type, A → A) id Int 7
|