Skip to content

Commit

Permalink
Add a test
Browse files Browse the repository at this point in the history
  • Loading branch information
mtzguido committed Oct 13, 2024
1 parent b12031f commit 6c0788d
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 1 deletion.
4 changes: 4 additions & 0 deletions tests/bug-reports/Bug3559a.fst
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
module Bug3559a

let a = "A.a"
let b = "A.b"
4 changes: 4 additions & 0 deletions tests/bug-reports/Bug3559b.fst
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
module Bug3559b
let a = "B.a"
let b = "B.b"
include Bug3559a {a}
4 changes: 4 additions & 0 deletions tests/bug-reports/Bug3559c.fst
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
module Bug3559c
include Bug3559b
let _ = assert (a == "A.a")
let _ = assert (b == "B.b")
2 changes: 1 addition & 1 deletion tests/bug-reports/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ SHOULD_VERIFY_CLOSED=\
Bug2155.fst Bug3224a.fst Bug3224b.fst Bug3236.fst Bug3252.fst \
BugBoxInjectivity.fst BugTypeParamProjector.fst Bug2172.fst Bug3266.fst \
Bug3264a.fst Bug3264b.fst Bug3286a.fst Bug3286b.fst Bug3320.fst Bug2583.fst \
Bug2419.fst Bug3353.fst Bug3426.fst Bug3530.fst
Bug2419.fst Bug3353.fst Bug3426.fst Bug3530.fst Bug3559c.fst


SHOULD_VERIFY_INTERFACE_CLOSED=Bug771.fsti Bug771b.fsti
Expand Down

0 comments on commit 6c0788d

Please sign in to comment.