9 lines
158 B
Text
9 lines
158 B
Text
variables (A : Type)
|
|
|
|
definition f (A : Type) (a : A) := a
|
|
|
|
inductive bla (A : Type) :=
|
|
| mk : A → bla A
|
|
|
|
structure foo (A : Type) (f : A → A) :=
|
|
(a : A)
|