aboutsummaryrefslogtreecommitdiffhomepage
path: root/coq/ex/test-cases/stale-load-path/b/b.v
diff options
context:
space:
mode:
authorGravatar Hendrik Tews <hendrik@askra.de>2011-01-14 21:59:26 +0000
committerGravatar Hendrik Tews <hendrik@askra.de>2011-01-14 21:59:26 +0000
commite1f5de972cbc0eb8d88675366c34ee66aca1b1b4 (patch)
treea53834d26af2a1594b1289bd3d3c884e484f5780 /coq/ex/test-cases/stale-load-path/b/b.v
parent462d8403fbe048aac215d809bfa72e7360384071 (diff)
- more coq test cases (some with surprising and embarrassing bugs)
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: ***)