clangbackend: More cursor adjustments

Fixes: QTCREATORBUG-21534
Change-Id: Ia8a6f277b186bd6decdfec26bfca30b36802c1c2
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
Christian Kandeler
2020-11-20 15:03:10 +01:00
parent d3fafcde0f
commit 0d12c8cba8
4 changed files with 45 additions and 11 deletions

View File

@@ -745,3 +745,9 @@ void f4()
ASSIGN(int i, thePointer);
ASSIGN2(int i, thePointer);
}
const int MyConstant = 8;
void f5()
{
int arr[MyConstant][8];
}