aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/bugs/closed/5598.v
diff options
context:
space:
mode:
authorGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2017-06-27 11:31:02 +0200
committerGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2017-06-28 12:31:11 +0200
commitd01e3b07470ab326f5754332ac812f21794721bc (patch)
tree0a6c2db31cd1987f6ef18633974c6c20148b00dd /test-suite/bugs/closed/5598.v
parentebfed8fc20c6cad1eddd5057d191905b42630b4e (diff)
A fix for #5598 (no discharge of Existing Classes referring to local variables).
Diffstat (limited to 'test-suite/bugs/closed/5598.v')
-rw-r--r--test-suite/bugs/closed/5598.v8
1 files changed, 8 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/5598.v b/test-suite/bugs/closed/5598.v
new file mode 100644
index 000000000..55fef1a57
--- /dev/null
+++ b/test-suite/bugs/closed/5598.v
@@ -0,0 +1,8 @@
+(* Checking when discharge of an existing class is possible *)
+Section foo.
+ Context {T} (a : T) (b : T).
+ Let k := eq_refl a.
+ Existing Class eq.
+ Fail Global Existing Instance k.
+ Existing Instance k.
+End foo.