lean4-htt/old_tests/tests/lean/1922.lean
2018-04-10 12:56:55 -07:00

8 lines
121 B
Text

set_option pp.implicit true
structure C :=
( d : Π { X : Type }, list X → list X )
def P(c : C):= c.d [0]
#print P