mirror of
https://github.com/github/codeql.git
synced 2026-05-05 05:35:13 +02:00
C++: Add test for C++20 implicit array sizes
Implement NewArrayExpr.getArraySize()
This commit is contained in:
@@ -1,5 +1,11 @@
|
||||
| file://:0:0:0:0 | char[6] | 6 |
|
||||
| file://:0:0:0:0 | char[26] | 26 |
|
||||
| file://:0:0:0:0 | char[] | |
|
||||
| file://:0:0:0:0 | const char[6] | 6 |
|
||||
| file://:0:0:0:0 | double[0] | 0 |
|
||||
| file://:0:0:0:0 | double[3] | 3 |
|
||||
| file://:0:0:0:0 | double[4] | 4 |
|
||||
| file://:0:0:0:0 | double[] | |
|
||||
| file://:0:0:0:0 | int[1] | 1 |
|
||||
| file://:0:0:0:0 | int[11] | 11 |
|
||||
| file://:0:0:0:0 | long[] | |
|
||||
|
||||
Reference in New Issue
Block a user