Ted Kremenek | 7b70cf6 | 2010-07-30 01:10:48 +0000 | [diff] [blame] | 1 | // RUN: c-index-test -test-load-source all %s 2>&1 | FileCheck %s |
2 | |||||
3 | // This test case previously just crashed the frontend. | ||||
4 | |||||
5 | struct abc *P; | ||||
6 | int main( | ||||
7 | |||||
8 | // CHECK: StructDecl=abc:5:8 Extent=[5:1 - 5:11] | ||||
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 9 | // CHECK: VarDecl=P:5:13 (Definition) Extent=[5:1 - 5:14] |
Ted Kremenek | 7b70cf6 | 2010-07-30 01:10:48 +0000 | [diff] [blame] | 10 | // CHECK: VarDecl=main:6:5 (Definition) Extent=[6:1 - 6:9] |
11 |