-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/topic/robin/gh-1875-sync-fix'
* origin/topic/robin/gh-1875-sync-fix: Fix potential nullptr dereference when comparing streams.
- Loading branch information
Showing
5 changed files
with
31 additions
and
2 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 |
---|---|---|
|
@@ -5,3 +5,5 @@ inout = "inout" | |
ocur = "ocur" | ||
bigsur = "Big Sur" | ||
Smoot = "Smoot" | ||
ba = "ba" | ||
Datas = "Datas" |
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
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 |
---|---|---|
@@ -1 +1 @@ | ||
1.12.0-dev.122 | ||
1.12.0-dev.124 |
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
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,14 @@ | ||
# @TEST-EXEC: printf ba | spicy-driver -d %INPUT | ||
# | ||
# @TEST-DOC: Tests `%synchronize-after` with a fully trimmed view; regression test for #1875. | ||
|
||
module RESP; | ||
|
||
public type Datas = unit { | ||
: (Data &synchronize)[] { confirm; } | ||
}; | ||
|
||
type Data = unit { | ||
%synchronize-after=b"a"; | ||
ty: uint8 &requires=($$ < 5); | ||
}; |