Skip to content

Commit 115530e

Browse files
committed
Update bug-13933.php
1 parent d78a28a commit 115530e

File tree

1 file changed

+65
-0
lines changed

1 file changed

+65
-0
lines changed

tests/PHPStan/Analyser/data/bug-13933.php

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,15 @@
1010
$list['a-4'] = static function (): D { return new D(); };
1111
$list['a-5'] = static function (): E { return new E(); };
1212
$list['a-6'] = static function (): F { return new F(); };
13+
$list['string'] = 'hello';
1314
// Beta
1415
$list['b-1'] = static function (): A1 { return new A1(); };
1516
$list['b-2'] = static function (): B1 { return new B1(); };
1617
$list['b-3'] = static function (): C1 { return new C1(); };
1718
$list['b-4'] = static function (): D1 { return new D1(); };
1819
$list['b-5'] = static function (): E1 { return new E1(); };
1920
$list['b-6'] = static function (): F1 { return new F1(); };
21+
$list['int'] = 123;
2022
// Delta
2123
$list['c-1'] = static function (): A2 { return new A2(); };
2224
$list['c-2'] = static function (): B2 { return new B2(); };
@@ -122,6 +124,69 @@
122124
$list['q-4'] = static function (): D16 { return new D16(); };
123125
$list['q-5'] = static function (): E16 { return new E16(); };
124126
$list['q-6'] = static function (): F16 { return new F16(); };
127+
//
128+
$list['r-1'] = static function (): A16 { return new A16(); };
129+
$list['r-2'] = static function (): B16 { return new B16(); };
130+
$list['r-3'] = static function (): C16 { return new C16(); };
131+
$list['r-4'] = static function (): D16 { return new D16(); };
132+
$list['r-5'] = static function (): E16 { return new E16(); };
133+
$list['r-6'] = static function (): F16 { return new F16(); };
134+
//
135+
$list['s-1'] = static function (): A16 { return new A16(); };
136+
$list['s-2'] = static function (): B16 { return new B16(); };
137+
$list['s-3'] = static function (): C16 { return new C16(); };
138+
$list['s-4'] = static function (): D16 { return new D16(); };
139+
$list['s-5'] = static function (): E16 { return new E16(); };
140+
$list['s-6'] = static function (): F16 { return new F16(); };
141+
//
142+
$list['t-1'] = static function (): A16 { return new A16(); };
143+
$list['t-2'] = static function (): B16 { return new B16(); };
144+
$list['t-3'] = static function (): C16 { return new C16(); };
145+
$list['t-4'] = static function (): D16 { return new D16(); };
146+
$list['t-5'] = static function (): E16 { return new E16(); };
147+
$list['t-6'] = static function (): F16 { return new F16(); };
148+
//
149+
$list['u-1'] = static function (): A16 { return new A16(); };
150+
$list['u-2'] = static function (): B16 { return new B16(); };
151+
$list['u-3'] = static function (): C16 { return new C16(); };
152+
$list['u-4'] = static function (): D16 { return new D16(); };
153+
$list['u-5'] = static function (): E16 { return new E16(); };
154+
$list['u-6'] = static function (): F16 { return new F16(); };
155+
//
156+
$list['v-1'] = static function (): A16 { return new A16(); };
157+
$list['v-2'] = static function (): B16 { return new B16(); };
158+
$list['v-3'] = static function (): C16 { return new C16(); };
159+
$list['v-4'] = static function (): D16 { return new D16(); };
160+
$list['v-5'] = static function (): E16 { return new E16(); };
161+
$list['v-6'] = static function (): F16 { return new F16(); };
162+
//
163+
$list['w-1'] = static function (): A16 { return new A16(); };
164+
$list['w-2'] = static function (): B16 { return new B16(); };
165+
$list['w-3'] = static function (): C16 { return new C16(); };
166+
$list['w-4'] = static function (): D16 { return new D16(); };
167+
$list['w-5'] = static function (): E16 { return new E16(); };
168+
$list['w-6'] = static function (): F16 { return new F16(); };
169+
//
170+
$list['x-1'] = static function (): A16 { return new A16(); };
171+
$list['x-2'] = static function (): B16 { return new B16(); };
172+
$list['x-3'] = static function (): C16 { return new C16(); };
173+
$list['x-4'] = static function (): D16 { return new D16(); };
174+
$list['x-5'] = static function (): E16 { return new E16(); };
175+
$list['x-6'] = static function (): F16 { return new F16(); };
176+
//
177+
$list['y-1'] = static function (): A16 { return new A16(); };
178+
$list['y-2'] = static function (): B16 { return new B16(); };
179+
$list['y-3'] = static function (): C16 { return new C16(); };
180+
$list['y-4'] = static function (): D16 { return new D16(); };
181+
$list['y-5'] = static function (): E16 { return new E16(); };
182+
$list['y-6'] = static function (): F16 { return new F16(); };
183+
//
184+
$list['z-1'] = static function (): A16 { return new A16(); };
185+
$list['z-2'] = static function (): B16 { return new B16(); };
186+
$list['z-3'] = static function (): C16 { return new C16(); };
187+
$list['z-4'] = static function (): D16 { return new D16(); };
188+
$list['z-5'] = static function (): E16 { return new E16(); };
189+
$list['z-6'] = static function (): F16 { return new F16(); };
125190

126191

127192
print 1;

0 commit comments

Comments
 (0)