diff options
| -rw-r--r-- | test-suite/bugs/closed/4120.v | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/4120.v b/test-suite/bugs/closed/4120.v new file mode 100644 index 0000000000..4164d86dc1 --- /dev/null +++ b/test-suite/bugs/closed/4120.v @@ -0,0 +1,6 @@ +Definition id {T} (x : T) := x. +Goal sigT (fun x => id x)%type. + change (fun x => ?f x) with f. + Unshelve. + exists Type. exact Set. +Defined. (* Error: Attempt to save a proof with shelved goals (in proof Unnamed_thm) *)
\ No newline at end of file |
