-
-
Notifications
You must be signed in to change notification settings - Fork 243
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed #108: Two different matchers did match the same statement.
- Loading branch information
Andreas Fertig
committed
Jan 10, 2019
1 parent
afb5024
commit 9cf81c9
Showing
6 changed files
with
33 additions
and
14 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
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
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,9 +1,8 @@ | ||
int main() | ||
{ | ||
auto p = new int[2][3][4]; | ||
auto p = new int[3][3][4]; | ||
|
||
// auto z = new int[1]; | ||
auto z = new int[1]; | ||
|
||
// auto x = new int; | ||
auto x = new 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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
int main() | ||
{ | ||
int (*p)[3][4] = new int [2][3][4]; | ||
int (*p)[3][4] = new int [3][3][4]; | ||
int * z = new int[1]; | ||
int * x = new 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,11 @@ | ||
auto gp = new int[2][3][4]; | ||
|
||
auto gz = new int[1]; | ||
|
||
auto gx = new int; | ||
|
||
auto gu = new int[0x2][0x3][0x4]; | ||
|
||
int main() | ||
{ | ||
} |