blob: 00db8f7f3c99c95e9ecddc3484c7c7247295d524 (
plain)
1
2
3
4
5
|
Definition id {T} (x : T) := x.
Goal sigT (fun x => id x)%type.
change (fun x => ?f x) with f.
exists Type. exact Set.
Defined. (* Error: Attempt to save a proof with shelved goals (in proof Unnamed_thm) *)
|