From d01e3b07470ab326f5754332ac812f21794721bc Mon Sep 17 00:00:00 2001 From: Hugo Herbelin Date: Tue, 27 Jun 2017 11:31:02 +0200 Subject: A fix for #5598 (no discharge of Existing Classes referring to local variables). --- test-suite/bugs/closed/5598.v | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 test-suite/bugs/closed/5598.v (limited to 'test-suite') diff --git a/test-suite/bugs/closed/5598.v b/test-suite/bugs/closed/5598.v new file mode 100644 index 0000000000..55fef1a575 --- /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. -- cgit v1.2.3