forked from FStarLang/FStar
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module Bug3145 | ||
|
||
let t1 = int * int * int | ||
let t2 = int * int & int | ||
let t3 = int & int * int | ||
let t4 = int & int & int |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
Module after desugaring: | ||
module Bug3145 | ||
Declarations: [ | ||
let t1 = Prims.int & Prims.int & Prims.int | ||
let t2 = (Prims.int & Prims.int) & Prims.int | ||
let t3 = Prims.int & (Prims.int & Prims.int) | ||
let t4 = Prims.int & Prims.int & Prims.int | ||
] | ||
Exports: [ | ||
let t1 = Prims.int & Prims.int & Prims.int | ||
let t2 = (Prims.int & Prims.int) & Prims.int | ||
let t3 = Prims.int & (Prims.int & Prims.int) | ||
let t4 = Prims.int & Prims.int & Prims.int | ||
] | ||
|
||
Module before type checking: | ||
module Bug3145 | ||
Declarations: [ | ||
let t1 = Prims.int & Prims.int & Prims.int | ||
let t2 = (Prims.int & Prims.int) & Prims.int | ||
let t3 = Prims.int & (Prims.int & Prims.int) | ||
let t4 = Prims.int & Prims.int & Prims.int | ||
] | ||
Exports: [ | ||
let t1 = Prims.int & Prims.int & Prims.int | ||
let t2 = (Prims.int & Prims.int) & Prims.int | ||
let t3 = Prims.int & (Prims.int & Prims.int) | ||
let t4 = Prims.int & Prims.int & Prims.int | ||
] | ||
|
||
Module after type checking: | ||
module Bug3145 | ||
Declarations: [ | ||
let t1 = Prims.int & Prims.int & Prims.int | ||
let t2 = (Prims.int & Prims.int) & Prims.int | ||
let t3 = Prims.int & (Prims.int & Prims.int) | ||
let t4 = Prims.int & Prims.int & Prims.int | ||
] | ||
Exports: [ | ||
let t1 = Prims.int & Prims.int & Prims.int | ||
let t2 = (Prims.int & Prims.int) & Prims.int | ||
let t3 = Prims.int & (Prims.int & Prims.int) | ||
let t4 = Prims.int & Prims.int & Prims.int | ||
] | ||
|
||
Verified module: Bug3145 | ||
All verification conditions discharged successfully |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters