aboutsummaryrefslogtreecommitdiffhomepage
path: root/coq/ex/test-cases/stale-load-path/b/b.v
diff options
context:
space:
mode:
Diffstat (limited to 'coq/ex/test-cases/stale-load-path/b/b.v')
-rw-r--r--coq/ex/test-cases/stale-load-path/b/b.v14
1 files changed, 14 insertions, 0 deletions
diff --git a/coq/ex/test-cases/stale-load-path/b/b.v b/coq/ex/test-cases/stale-load-path/b/b.v
new file mode 100644
index 00000000..e021cf7a
--- /dev/null
+++ b/coq/ex/test-cases/stale-load-path/b/b.v
@@ -0,0 +1,14 @@
+(* This file depends on ../a/Le.v *)
+
+Require Le.
+
+(* The next print should work. *)
+Print Le.a.
+
+(* The next print should not work. *)
+Print Le.le_refl.
+
+
+(*** Local Variables: ***)
+(*** coq-load-path: ("../a") ***)
+(*** End: ***)