xref: /minix3/external/bsd/llvm/dist/clang/test/Analysis/cxx-for-range.cpp (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -analyze -std=c++11 -analyzer-checker=core -analyzer-config path-diagnostics-alternate=true -analyzer-output=plist-multi-file -o %t.plist -verify %s
2*f4a2713aSLionel Sambuc // RUN: FileCheck --input-file=%t.plist %s
3*f4a2713aSLionel Sambuc 
4*f4a2713aSLionel Sambuc extern void work();
5*f4a2713aSLionel Sambuc 
testLoop()6*f4a2713aSLionel Sambuc void testLoop() {
7*f4a2713aSLionel Sambuc   int z[] = {1,2};
8*f4a2713aSLionel Sambuc   for (int y : z) {
9*f4a2713aSLionel Sambuc     work();
10*f4a2713aSLionel Sambuc     work();
11*f4a2713aSLionel Sambuc     if (y == 2)
12*f4a2713aSLionel Sambuc       *(volatile int *)0 = 1; // expected-warning {{Dereference of null pointer}}
13*f4a2713aSLionel Sambuc     work();
14*f4a2713aSLionel Sambuc     work();
15*f4a2713aSLionel Sambuc     (void)y;
16*f4a2713aSLionel Sambuc   }
17*f4a2713aSLionel Sambuc 
18*f4a2713aSLionel Sambuc   *(volatile int *)0 = 1; // no-warning
19*f4a2713aSLionel Sambuc }
20*f4a2713aSLionel Sambuc 
21*f4a2713aSLionel Sambuc class MagicVector {
22*f4a2713aSLionel Sambuc public:
23*f4a2713aSLionel Sambuc   MagicVector();
24*f4a2713aSLionel Sambuc 
25*f4a2713aSLionel Sambuc   using iterator = int *;
26*f4a2713aSLionel Sambuc 
27*f4a2713aSLionel Sambuc   iterator begin() const;
28*f4a2713aSLionel Sambuc   iterator end() const;
29*f4a2713aSLionel Sambuc };
30*f4a2713aSLionel Sambuc 
get(bool fail=false)31*f4a2713aSLionel Sambuc MagicVector get(bool fail = false) {
32*f4a2713aSLionel Sambuc   if (fail)
33*f4a2713aSLionel Sambuc     *(volatile int *)0 = 1; // expected-warning {{Dereference of null pointer}}
34*f4a2713aSLionel Sambuc   return MagicVector{};
35*f4a2713aSLionel Sambuc }
36*f4a2713aSLionel Sambuc 
testLoopOpaqueCollection()37*f4a2713aSLionel Sambuc void testLoopOpaqueCollection() {
38*f4a2713aSLionel Sambuc   for (int y : get()) {
39*f4a2713aSLionel Sambuc     work();
40*f4a2713aSLionel Sambuc     work();
41*f4a2713aSLionel Sambuc     if (y == 2)
42*f4a2713aSLionel Sambuc       *(volatile int *)0 = 1; // expected-warning {{Dereference of null pointer}}
43*f4a2713aSLionel Sambuc     work();
44*f4a2713aSLionel Sambuc     work();
45*f4a2713aSLionel Sambuc     (void)y;
46*f4a2713aSLionel Sambuc   }
47*f4a2713aSLionel Sambuc 
48*f4a2713aSLionel Sambuc   *(volatile int *)0 = 1; // expected-warning {{Dereference of null pointer}}
49*f4a2713aSLionel Sambuc }
50*f4a2713aSLionel Sambuc 
51*f4a2713aSLionel Sambuc 
52*f4a2713aSLionel Sambuc class MagicVector2 {
53*f4a2713aSLionel Sambuc public:
54*f4a2713aSLionel Sambuc   MagicVector2();
55*f4a2713aSLionel Sambuc 
56*f4a2713aSLionel Sambuc   class iterator {
57*f4a2713aSLionel Sambuc   public:
58*f4a2713aSLionel Sambuc     int operator*() const;
59*f4a2713aSLionel Sambuc     iterator &operator++();
60*f4a2713aSLionel Sambuc     bool operator==(const iterator &);
61*f4a2713aSLionel Sambuc     bool operator!=(const iterator &);
62*f4a2713aSLionel Sambuc   };
63*f4a2713aSLionel Sambuc 
64*f4a2713aSLionel Sambuc   iterator begin() const;
65*f4a2713aSLionel Sambuc   iterator end() const;
66*f4a2713aSLionel Sambuc };
67*f4a2713aSLionel Sambuc 
get2()68*f4a2713aSLionel Sambuc MagicVector2 get2() {
69*f4a2713aSLionel Sambuc   return MagicVector2{};
70*f4a2713aSLionel Sambuc }
71*f4a2713aSLionel Sambuc 
testLoopOpaqueIterator()72*f4a2713aSLionel Sambuc void testLoopOpaqueIterator() {
73*f4a2713aSLionel Sambuc   for (int y : get2()) {
74*f4a2713aSLionel Sambuc     work();
75*f4a2713aSLionel Sambuc     work();
76*f4a2713aSLionel Sambuc     if (y == 2)
77*f4a2713aSLionel Sambuc       *(volatile int *)0 = 1; // expected-warning {{Dereference of null pointer}}
78*f4a2713aSLionel Sambuc     work();
79*f4a2713aSLionel Sambuc     work();
80*f4a2713aSLionel Sambuc     (void)y;
81*f4a2713aSLionel Sambuc   }
82*f4a2713aSLionel Sambuc 
83*f4a2713aSLionel Sambuc   *(volatile int *)0 = 1; // expected-warning {{Dereference of null pointer}}
84*f4a2713aSLionel Sambuc }
85*f4a2713aSLionel Sambuc 
86*f4a2713aSLionel Sambuc 
testLoopErrorInRange()87*f4a2713aSLionel Sambuc void testLoopErrorInRange() {
88*f4a2713aSLionel Sambuc   for (int y : get(true)) { // error inside get()
89*f4a2713aSLionel Sambuc     work();
90*f4a2713aSLionel Sambuc     work();
91*f4a2713aSLionel Sambuc     if (y == 2)
92*f4a2713aSLionel Sambuc       *(volatile int *)0 = 1; // no-warning
93*f4a2713aSLionel Sambuc     work();
94*f4a2713aSLionel Sambuc     work();
95*f4a2713aSLionel Sambuc     (void)y;
96*f4a2713aSLionel Sambuc   }
97*f4a2713aSLionel Sambuc 
98*f4a2713aSLionel Sambuc   *(volatile int *)0 = 1; // no-warning
99*f4a2713aSLionel Sambuc }
100*f4a2713aSLionel Sambuc // CHECK:  <key>diagnostics</key>
101*f4a2713aSLionel Sambuc // CHECK-NEXT:  <array>
102*f4a2713aSLionel Sambuc // CHECK-NEXT:   <dict>
103*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>path</key>
104*f4a2713aSLionel Sambuc // CHECK-NEXT:    <array>
105*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
106*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
107*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
108*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
109*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
110*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
111*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
112*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
113*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>7</integer>
114*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
115*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
116*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
117*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
118*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>7</integer>
119*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
120*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
121*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
122*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
123*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
124*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
125*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
126*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>8</integer>
127*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
128*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
129*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
130*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
131*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>8</integer>
132*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
133*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
134*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
135*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
136*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
137*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
138*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
139*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
140*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
141*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
142*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
143*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>8</integer>
144*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>14</integer>
145*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
146*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
147*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
148*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
149*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
150*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
151*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>8</integer>
152*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>14</integer>
153*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
154*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
155*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
156*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>8</integer>
157*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>14</integer>
158*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
159*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
160*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
161*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
162*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>0</integer>
163*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
164*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Entering loop body</string>
165*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
166*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Entering loop body</string>
167*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
168*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
169*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
170*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
171*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
172*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
173*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
174*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
175*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
176*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>8</integer>
177*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
178*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
179*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
180*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
181*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>8</integer>
182*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
183*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
184*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
185*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
186*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
187*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
188*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
189*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>9</integer>
190*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
191*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
192*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
193*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
194*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>9</integer>
195*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>8</integer>
196*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
197*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
198*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
199*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
200*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
201*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
202*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
203*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
204*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
205*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
206*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
207*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
208*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
209*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
210*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>9</integer>
211*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
212*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
213*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
214*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
215*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>9</integer>
216*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>8</integer>
217*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
218*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
219*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
220*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
221*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
222*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
223*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>11</integer>
224*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
225*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
226*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
227*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
228*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>11</integer>
229*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>6</integer>
230*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
231*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
232*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
233*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
234*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
235*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
236*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
237*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
238*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
239*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
240*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
241*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
242*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
243*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
244*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>11</integer>
245*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
246*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
247*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
248*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
249*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>11</integer>
250*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>6</integer>
251*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
252*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
253*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
254*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
255*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
256*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
257*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>13</integer>
258*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
259*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
260*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
261*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
262*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>13</integer>
263*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>8</integer>
264*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
265*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
266*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
267*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
268*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
269*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
270*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
271*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
272*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
273*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
274*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
275*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
276*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
277*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
278*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>13</integer>
279*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
280*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
281*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
282*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
283*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>13</integer>
284*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>8</integer>
285*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
286*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
287*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
288*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
289*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
290*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
291*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>15</integer>
292*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
293*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
294*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
295*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
296*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>15</integer>
297*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
298*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
299*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
300*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
301*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
302*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
303*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
304*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
305*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
306*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
307*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
308*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
309*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
310*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
311*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
312*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>15</integer>
313*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
314*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
315*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
316*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
317*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>15</integer>
318*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
319*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
320*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
321*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
322*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
323*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
324*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
325*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>16</integer>
326*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
327*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
328*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
329*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
330*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>16</integer>
331*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
332*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
333*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
334*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
335*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
336*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
337*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
338*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
339*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
340*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
341*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
342*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
343*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
344*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
345*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
346*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>16</integer>
347*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
348*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
349*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
350*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
351*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>16</integer>
352*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
353*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
354*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
355*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
356*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
357*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
358*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
359*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>8</integer>
360*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
361*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
362*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
363*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
364*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>8</integer>
365*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
366*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
367*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
368*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
369*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
370*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
371*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
372*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
373*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
374*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
375*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
376*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>8</integer>
377*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>3</integer>
378*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
379*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
380*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
381*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
382*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
383*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
384*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>8</integer>
385*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>3</integer>
386*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
387*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
388*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
389*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>16</integer>
390*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>3</integer>
391*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
392*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
393*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
394*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
395*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>0</integer>
396*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
397*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Looping back to the head of the loop</string>
398*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
399*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Looping back to the head of the loop</string>
400*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
401*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
402*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
403*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
404*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
405*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>8</integer>
406*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>14</integer>
407*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
408*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
409*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
410*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
411*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
412*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
413*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>8</integer>
414*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>14</integer>
415*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
416*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
417*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
418*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>8</integer>
419*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>14</integer>
420*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
421*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
422*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
423*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
424*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>0</integer>
425*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
426*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Entering loop body</string>
427*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
428*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Entering loop body</string>
429*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
430*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
431*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
432*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
433*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
434*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
435*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
436*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
437*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
438*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>8</integer>
439*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
440*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
441*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
442*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
443*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>8</integer>
444*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
445*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
446*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
447*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
448*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
449*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
450*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
451*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>9</integer>
452*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
453*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
454*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
455*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
456*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>9</integer>
457*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>8</integer>
458*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
459*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
460*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
461*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
462*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
463*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
464*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
465*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
466*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
467*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
468*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
469*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
470*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
471*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
472*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>9</integer>
473*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
474*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
475*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
476*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
477*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>9</integer>
478*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>8</integer>
479*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
480*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
481*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
482*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
483*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
484*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
485*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>11</integer>
486*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
487*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
488*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
489*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
490*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>11</integer>
491*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>6</integer>
492*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
493*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
494*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
495*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
496*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
497*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
498*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
499*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
500*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
501*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
502*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
503*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
504*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
505*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
506*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>11</integer>
507*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
508*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
509*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
510*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
511*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>11</integer>
512*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>6</integer>
513*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
514*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
515*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
516*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
517*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
518*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
519*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>12</integer>
520*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>7</integer>
521*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
522*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
523*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
524*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>12</integer>
525*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>7</integer>
526*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
527*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
528*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
529*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
530*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
531*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
532*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
533*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
534*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
535*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
536*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
537*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
538*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
539*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
540*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>12</integer>
541*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>7</integer>
542*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
543*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
544*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
545*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>12</integer>
546*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>7</integer>
547*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
548*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
549*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
550*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
551*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
552*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
553*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>12</integer>
554*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>26</integer>
555*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
556*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
557*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
558*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>12</integer>
559*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>26</integer>
560*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
561*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
562*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
563*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
564*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
565*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
566*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
567*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
568*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
569*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
570*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>12</integer>
571*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>26</integer>
572*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
573*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
574*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
575*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
576*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
577*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
578*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>12</integer>
579*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>7</integer>
580*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
581*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
582*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
583*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>12</integer>
584*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>28</integer>
585*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
586*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
587*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
588*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
589*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>0</integer>
590*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
591*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Dereference of null pointer</string>
592*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
593*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Dereference of null pointer</string>
594*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
595*f4a2713aSLionel Sambuc // CHECK-NEXT:    </array>
596*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>description</key><string>Dereference of null pointer</string>
597*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>category</key><string>Logic error</string>
598*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>type</key><string>Dereference of null pointer</string>
599*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>issue_context_kind</key><string>function</string>
600*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>issue_context</key><string>testLoop</string>
601*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>issue_hash</key><string>6</string>
602*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>location</key>
603*f4a2713aSLionel Sambuc // CHECK-NEXT:   <dict>
604*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>line</key><integer>12</integer>
605*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>col</key><integer>26</integer>
606*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>file</key><integer>0</integer>
607*f4a2713aSLionel Sambuc // CHECK-NEXT:   </dict>
608*f4a2713aSLionel Sambuc // CHECK-NEXT:   </dict>
609*f4a2713aSLionel Sambuc // CHECK-NEXT:   <dict>
610*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>path</key>
611*f4a2713aSLionel Sambuc // CHECK-NEXT:    <array>
612*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
613*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
614*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
615*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
616*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
617*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
618*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
619*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
620*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>88</integer>
621*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
622*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
623*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
624*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
625*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>88</integer>
626*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
627*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
628*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
629*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
630*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
631*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
632*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
633*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>88</integer>
634*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>16</integer>
635*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
636*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
637*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
638*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>88</integer>
639*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>18</integer>
640*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
641*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
642*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
643*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
644*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
645*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
646*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
647*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
648*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
649*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
650*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>88</integer>
651*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>16</integer>
652*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
653*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
654*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
655*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
656*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
657*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
658*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>88</integer>
659*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>16</integer>
660*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
661*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
662*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
663*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>88</integer>
664*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>24</integer>
665*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
666*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
667*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
668*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
669*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>0</integer>
670*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
671*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Calling &apos;get&apos;</string>
672*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
673*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Calling &apos;get&apos;</string>
674*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
675*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
676*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
677*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
678*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
679*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>31</integer>
680*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>1</integer>
681*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
682*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
683*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>1</integer>
684*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
685*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Entered call from &apos;testLoopErrorInRange&apos;</string>
686*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
687*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Entered call from &apos;testLoopErrorInRange&apos;</string>
688*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
689*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
690*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
691*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
692*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
693*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
694*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
695*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
696*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
697*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>31</integer>
698*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>1</integer>
699*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
700*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
701*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
702*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>31</integer>
703*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>11</integer>
704*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
705*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
706*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
707*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
708*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
709*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
710*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>32</integer>
711*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
712*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
713*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
714*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
715*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>32</integer>
716*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>4</integer>
717*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
718*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
719*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
720*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
721*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
722*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
723*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
724*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
725*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
726*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
727*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
728*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
729*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
730*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
731*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>32</integer>
732*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
733*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
734*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
735*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
736*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>32</integer>
737*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>4</integer>
738*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
739*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
740*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
741*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
742*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
743*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
744*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>33</integer>
745*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
746*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
747*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
748*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
749*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>33</integer>
750*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
751*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
752*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
753*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
754*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
755*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
756*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
757*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
758*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
759*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
760*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
761*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
762*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
763*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
764*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
765*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>33</integer>
766*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
767*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
768*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
769*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
770*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>33</integer>
771*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
772*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
773*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
774*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
775*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
776*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
777*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
778*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>33</integer>
779*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>24</integer>
780*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
781*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
782*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
783*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>33</integer>
784*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>24</integer>
785*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
786*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
787*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
788*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
789*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
790*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
791*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
792*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
793*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
794*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
795*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>33</integer>
796*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>24</integer>
797*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
798*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
799*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
800*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
801*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
802*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
803*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>33</integer>
804*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>5</integer>
805*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
806*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
807*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
808*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>33</integer>
809*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>26</integer>
810*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
811*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
812*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
813*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
814*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>1</integer>
815*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
816*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Dereference of null pointer</string>
817*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
818*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Dereference of null pointer</string>
819*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
820*f4a2713aSLionel Sambuc // CHECK-NEXT:    </array>
821*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>description</key><string>Dereference of null pointer</string>
822*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>category</key><string>Logic error</string>
823*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>type</key><string>Dereference of null pointer</string>
824*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>issue_context_kind</key><string>function</string>
825*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>issue_context</key><string>get</string>
826*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>issue_hash</key><string>2</string>
827*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>location</key>
828*f4a2713aSLionel Sambuc // CHECK-NEXT:   <dict>
829*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>line</key><integer>33</integer>
830*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>col</key><integer>24</integer>
831*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>file</key><integer>0</integer>
832*f4a2713aSLionel Sambuc // CHECK-NEXT:   </dict>
833*f4a2713aSLionel Sambuc // CHECK-NEXT:   </dict>
834*f4a2713aSLionel Sambuc // CHECK-NEXT:   <dict>
835*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>path</key>
836*f4a2713aSLionel Sambuc // CHECK-NEXT:    <array>
837*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
838*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
839*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
840*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
841*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>38</integer>
842*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>14</integer>
843*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
844*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
845*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
846*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
847*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
848*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
849*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>38</integer>
850*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>14</integer>
851*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
852*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
853*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
854*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>38</integer>
855*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>14</integer>
856*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
857*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
858*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
859*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
860*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>0</integer>
861*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
862*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Entering loop body</string>
863*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
864*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Entering loop body</string>
865*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
866*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
867*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
868*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
869*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
870*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
871*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
872*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
873*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
874*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>38</integer>
875*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
876*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
877*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
878*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
879*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>38</integer>
880*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
881*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
882*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
883*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
884*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
885*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
886*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
887*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>39</integer>
888*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
889*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
890*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
891*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
892*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>39</integer>
893*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>8</integer>
894*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
895*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
896*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
897*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
898*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
899*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
900*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
901*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
902*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
903*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
904*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
905*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
906*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
907*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
908*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>39</integer>
909*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
910*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
911*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
912*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
913*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>39</integer>
914*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>8</integer>
915*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
916*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
917*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
918*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
919*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
920*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
921*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>41</integer>
922*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
923*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
924*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
925*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
926*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>41</integer>
927*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>6</integer>
928*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
929*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
930*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
931*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
932*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
933*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
934*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
935*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
936*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
937*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
938*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
939*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
940*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
941*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
942*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>41</integer>
943*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
944*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
945*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
946*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
947*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>41</integer>
948*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>6</integer>
949*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
950*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
951*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
952*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
953*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
954*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
955*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>41</integer>
956*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>9</integer>
957*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
958*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
959*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
960*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>41</integer>
961*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>9</integer>
962*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
963*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
964*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
965*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
966*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
967*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
968*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
969*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
970*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
971*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
972*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>41</integer>
973*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>9</integer>
974*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
975*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
976*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
977*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
978*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
979*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
980*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>41</integer>
981*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>9</integer>
982*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
983*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
984*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
985*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>41</integer>
986*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>14</integer>
987*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
988*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
989*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
990*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
991*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>0</integer>
992*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
993*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Assuming &apos;y&apos; is equal to 2</string>
994*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
995*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Assuming &apos;y&apos; is equal to 2</string>
996*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
997*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
998*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
999*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
1000*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
1001*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
1002*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
1003*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1004*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1005*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>41</integer>
1006*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>9</integer>
1007*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1008*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1009*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1010*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>41</integer>
1011*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>9</integer>
1012*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1013*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1014*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1015*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
1016*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1017*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1018*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>42</integer>
1019*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>7</integer>
1020*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1021*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1022*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1023*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>42</integer>
1024*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>7</integer>
1025*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1026*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1027*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1028*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
1029*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
1030*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1031*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1032*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
1033*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
1034*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
1035*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
1036*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
1037*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1038*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1039*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>42</integer>
1040*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>7</integer>
1041*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1042*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1043*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1044*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>42</integer>
1045*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>7</integer>
1046*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1047*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1048*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1049*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
1050*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1051*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1052*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>42</integer>
1053*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>26</integer>
1054*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1055*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1056*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1057*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>42</integer>
1058*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>26</integer>
1059*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1060*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1061*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1062*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
1063*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
1064*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1065*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1066*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
1067*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
1068*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
1069*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>42</integer>
1070*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>26</integer>
1071*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
1072*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
1073*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
1074*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
1075*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
1076*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1077*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>42</integer>
1078*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>7</integer>
1079*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1080*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1081*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1082*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>42</integer>
1083*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>28</integer>
1084*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1085*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1086*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
1087*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
1088*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>0</integer>
1089*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
1090*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Dereference of null pointer</string>
1091*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
1092*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Dereference of null pointer</string>
1093*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1094*f4a2713aSLionel Sambuc // CHECK-NEXT:    </array>
1095*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>description</key><string>Dereference of null pointer</string>
1096*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>category</key><string>Logic error</string>
1097*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>type</key><string>Dereference of null pointer</string>
1098*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>issue_context_kind</key><string>function</string>
1099*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>issue_context</key><string>testLoopOpaqueCollection</string>
1100*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>issue_hash</key><string>5</string>
1101*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>location</key>
1102*f4a2713aSLionel Sambuc // CHECK-NEXT:   <dict>
1103*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>line</key><integer>42</integer>
1104*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>col</key><integer>26</integer>
1105*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>file</key><integer>0</integer>
1106*f4a2713aSLionel Sambuc // CHECK-NEXT:   </dict>
1107*f4a2713aSLionel Sambuc // CHECK-NEXT:   </dict>
1108*f4a2713aSLionel Sambuc // CHECK-NEXT:   <dict>
1109*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>path</key>
1110*f4a2713aSLionel Sambuc // CHECK-NEXT:    <array>
1111*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1112*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
1113*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
1114*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
1115*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>38</integer>
1116*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>14</integer>
1117*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
1118*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
1119*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
1120*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
1121*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
1122*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1123*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>38</integer>
1124*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>14</integer>
1125*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1126*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1127*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1128*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>38</integer>
1129*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>14</integer>
1130*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1131*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1132*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
1133*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
1134*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>0</integer>
1135*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
1136*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Loop body skipped when range is empty</string>
1137*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
1138*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Loop body skipped when range is empty</string>
1139*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1140*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1141*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
1142*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
1143*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
1144*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
1145*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
1146*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1147*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1148*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>38</integer>
1149*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
1150*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1151*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1152*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1153*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>38</integer>
1154*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
1155*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1156*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1157*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1158*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
1159*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1160*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1161*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>48</integer>
1162*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
1163*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1164*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1165*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1166*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>48</integer>
1167*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
1168*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1169*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1170*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1171*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
1172*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
1173*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1174*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1175*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
1176*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
1177*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
1178*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
1179*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
1180*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1181*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1182*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>48</integer>
1183*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
1184*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1185*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1186*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1187*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>48</integer>
1188*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
1189*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1190*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1191*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1192*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
1193*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1194*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1195*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>48</integer>
1196*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>22</integer>
1197*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1198*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1199*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1200*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>48</integer>
1201*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>22</integer>
1202*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1203*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1204*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1205*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
1206*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
1207*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1208*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1209*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
1210*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
1211*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
1212*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>48</integer>
1213*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>22</integer>
1214*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
1215*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
1216*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
1217*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
1218*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
1219*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1220*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>48</integer>
1221*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>3</integer>
1222*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1223*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1224*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1225*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>48</integer>
1226*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>24</integer>
1227*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1228*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1229*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
1230*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
1231*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>0</integer>
1232*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
1233*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Dereference of null pointer</string>
1234*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
1235*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Dereference of null pointer</string>
1236*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1237*f4a2713aSLionel Sambuc // CHECK-NEXT:    </array>
1238*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>description</key><string>Dereference of null pointer</string>
1239*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>category</key><string>Logic error</string>
1240*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>type</key><string>Dereference of null pointer</string>
1241*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>issue_context_kind</key><string>function</string>
1242*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>issue_context</key><string>testLoopOpaqueCollection</string>
1243*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>issue_hash</key><string>11</string>
1244*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>location</key>
1245*f4a2713aSLionel Sambuc // CHECK-NEXT:   <dict>
1246*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>line</key><integer>48</integer>
1247*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>col</key><integer>22</integer>
1248*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>file</key><integer>0</integer>
1249*f4a2713aSLionel Sambuc // CHECK-NEXT:   </dict>
1250*f4a2713aSLionel Sambuc // CHECK-NEXT:   </dict>
1251*f4a2713aSLionel Sambuc // CHECK-NEXT:   <dict>
1252*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>path</key>
1253*f4a2713aSLionel Sambuc // CHECK-NEXT:    <array>
1254*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1255*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
1256*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
1257*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
1258*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>73</integer>
1259*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>14</integer>
1260*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
1261*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
1262*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
1263*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
1264*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
1265*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1266*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>73</integer>
1267*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>14</integer>
1268*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1269*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1270*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1271*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>73</integer>
1272*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>14</integer>
1273*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1274*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1275*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
1276*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
1277*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>0</integer>
1278*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
1279*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Entering loop body</string>
1280*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
1281*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Entering loop body</string>
1282*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1283*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1284*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
1285*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
1286*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
1287*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
1288*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
1289*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1290*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1291*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>73</integer>
1292*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
1293*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1294*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1295*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1296*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>73</integer>
1297*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
1298*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1299*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1300*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1301*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
1302*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1303*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1304*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>74</integer>
1305*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
1306*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1307*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1308*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1309*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>74</integer>
1310*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>8</integer>
1311*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1312*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1313*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1314*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
1315*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
1316*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1317*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1318*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
1319*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
1320*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
1321*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
1322*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
1323*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1324*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1325*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>74</integer>
1326*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
1327*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1328*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1329*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1330*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>74</integer>
1331*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>8</integer>
1332*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1333*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1334*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1335*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
1336*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1337*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1338*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>76</integer>
1339*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
1340*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1341*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1342*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1343*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>76</integer>
1344*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>6</integer>
1345*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1346*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1347*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1348*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
1349*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
1350*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1351*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1352*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
1353*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
1354*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
1355*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
1356*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
1357*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1358*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1359*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>76</integer>
1360*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
1361*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1362*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1363*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1364*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>76</integer>
1365*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>6</integer>
1366*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1367*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1368*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1369*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
1370*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1371*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1372*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>76</integer>
1373*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>9</integer>
1374*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1375*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1376*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1377*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>76</integer>
1378*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>9</integer>
1379*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1380*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1381*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1382*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
1383*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
1384*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1385*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1386*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
1387*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
1388*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
1389*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>76</integer>
1390*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>9</integer>
1391*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
1392*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
1393*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
1394*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
1395*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
1396*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1397*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>76</integer>
1398*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>9</integer>
1399*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1400*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1401*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1402*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>76</integer>
1403*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>14</integer>
1404*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1405*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1406*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
1407*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
1408*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>0</integer>
1409*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
1410*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Assuming &apos;y&apos; is equal to 2</string>
1411*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
1412*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Assuming &apos;y&apos; is equal to 2</string>
1413*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1414*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1415*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
1416*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
1417*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
1418*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
1419*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
1420*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1421*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1422*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>76</integer>
1423*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>9</integer>
1424*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1425*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1426*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1427*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>76</integer>
1428*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>9</integer>
1429*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1430*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1431*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1432*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
1433*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1434*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1435*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>77</integer>
1436*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>7</integer>
1437*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1438*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1439*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1440*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>77</integer>
1441*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>7</integer>
1442*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1443*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1444*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1445*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
1446*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
1447*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1448*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1449*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
1450*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
1451*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
1452*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
1453*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
1454*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1455*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1456*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>77</integer>
1457*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>7</integer>
1458*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1459*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1460*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1461*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>77</integer>
1462*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>7</integer>
1463*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1464*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1465*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1466*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
1467*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1468*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1469*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>77</integer>
1470*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>26</integer>
1471*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1472*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1473*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1474*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>77</integer>
1475*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>26</integer>
1476*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1477*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1478*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1479*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
1480*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
1481*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1482*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1483*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
1484*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
1485*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
1486*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>77</integer>
1487*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>26</integer>
1488*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
1489*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
1490*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
1491*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
1492*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
1493*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1494*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>77</integer>
1495*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>7</integer>
1496*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1497*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1498*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1499*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>77</integer>
1500*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>28</integer>
1501*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1502*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1503*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
1504*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
1505*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>0</integer>
1506*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
1507*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Dereference of null pointer</string>
1508*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
1509*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Dereference of null pointer</string>
1510*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1511*f4a2713aSLionel Sambuc // CHECK-NEXT:    </array>
1512*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>description</key><string>Dereference of null pointer</string>
1513*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>category</key><string>Logic error</string>
1514*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>type</key><string>Dereference of null pointer</string>
1515*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>issue_context_kind</key><string>function</string>
1516*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>issue_context</key><string>testLoopOpaqueIterator</string>
1517*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>issue_hash</key><string>5</string>
1518*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>location</key>
1519*f4a2713aSLionel Sambuc // CHECK-NEXT:   <dict>
1520*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>line</key><integer>77</integer>
1521*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>col</key><integer>26</integer>
1522*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>file</key><integer>0</integer>
1523*f4a2713aSLionel Sambuc // CHECK-NEXT:   </dict>
1524*f4a2713aSLionel Sambuc // CHECK-NEXT:   </dict>
1525*f4a2713aSLionel Sambuc // CHECK-NEXT:   <dict>
1526*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>path</key>
1527*f4a2713aSLionel Sambuc // CHECK-NEXT:    <array>
1528*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1529*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
1530*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
1531*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
1532*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>73</integer>
1533*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>14</integer>
1534*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
1535*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
1536*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
1537*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
1538*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
1539*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1540*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>73</integer>
1541*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>14</integer>
1542*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1543*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1544*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1545*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>73</integer>
1546*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>14</integer>
1547*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1548*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1549*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
1550*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
1551*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>0</integer>
1552*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
1553*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Loop body skipped when range is empty</string>
1554*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
1555*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Loop body skipped when range is empty</string>
1556*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1557*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1558*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
1559*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
1560*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
1561*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
1562*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
1563*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1564*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1565*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>73</integer>
1566*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
1567*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1568*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1569*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1570*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>73</integer>
1571*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
1572*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1573*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1574*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1575*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
1576*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1577*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1578*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>83</integer>
1579*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
1580*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1581*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1582*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1583*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>83</integer>
1584*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
1585*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1586*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1587*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1588*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
1589*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
1590*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1591*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1592*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
1593*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
1594*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
1595*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
1596*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
1597*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1598*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1599*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>83</integer>
1600*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
1601*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1602*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1603*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1604*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>83</integer>
1605*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
1606*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1607*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1608*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1609*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
1610*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1611*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1612*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>83</integer>
1613*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>22</integer>
1614*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1615*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1616*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1617*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>83</integer>
1618*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>22</integer>
1619*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1620*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1621*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1622*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
1623*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
1624*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1625*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1626*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
1627*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
1628*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
1629*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>83</integer>
1630*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>22</integer>
1631*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
1632*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
1633*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
1634*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
1635*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
1636*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1637*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>83</integer>
1638*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>3</integer>
1639*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1640*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1641*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1642*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>83</integer>
1643*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>24</integer>
1644*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1645*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1646*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
1647*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
1648*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>0</integer>
1649*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
1650*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Dereference of null pointer</string>
1651*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
1652*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Dereference of null pointer</string>
1653*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1654*f4a2713aSLionel Sambuc // CHECK-NEXT:    </array>
1655*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>description</key><string>Dereference of null pointer</string>
1656*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>category</key><string>Logic error</string>
1657*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>type</key><string>Dereference of null pointer</string>
1658*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>issue_context_kind</key><string>function</string>
1659*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>issue_context</key><string>testLoopOpaqueIterator</string>
1660*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>issue_hash</key><string>11</string>
1661*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>location</key>
1662*f4a2713aSLionel Sambuc // CHECK-NEXT:   <dict>
1663*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>line</key><integer>83</integer>
1664*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>col</key><integer>22</integer>
1665*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>file</key><integer>0</integer>
1666*f4a2713aSLionel Sambuc // CHECK-NEXT:   </dict>
1667*f4a2713aSLionel Sambuc // CHECK-NEXT:   </dict>
1668*f4a2713aSLionel Sambuc // CHECK-NEXT:  </array>
1669