aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/bugs/closed/4046.v
diff options
context:
space:
mode:
authorGravatar Matthieu Sozeau <matthieu.sozeau@inria.fr>2015-03-03 22:32:02 +0100
committerGravatar Matthieu Sozeau <matthieu.sozeau@inria.fr>2015-03-03 22:32:02 +0100
commitc1a330b28cd1417099183a1cb0a86b6a606b7ae9 (patch)
treed7d7cc78b9109f4295b1daf706f825e440666dec /test-suite/bugs/closed/4046.v
parentf51efdd18b01c7f3fce026c32c0cd21ff4f6ca02 (diff)
Add missing test-suite files and update gitignore.
Diffstat (limited to 'test-suite/bugs/closed/4046.v')
-rw-r--r--test-suite/bugs/closed/4046.v6
1 files changed, 6 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/4046.v b/test-suite/bugs/closed/4046.v
new file mode 100644
index 000000000..8f8779b7b
--- /dev/null
+++ b/test-suite/bugs/closed/4046.v
@@ -0,0 +1,6 @@
+Module Import Foo.
+ Class Foo := { foo : Type }.
+End Foo.
+
+Instance f : Foo := { foo := nat }. (* works fine *)
+Instance f' : Foo.Foo := { Foo.foo := nat }.