1 | | |
2 | | |
3 | | |
4 | | |
5 | | |
6 | | |
7 | | |
8 | | |
9 | | |
10 | | |
11 | | |
12 | | |
13 | | |
14 | | |
15 | | |
16 | | |
17 | | |
| #pike __REAL_VERSION__ | inherit Tools.Shoot.Test; | | constant name="Foreach (arr,local)"; | constant dont_dump_program = 1; | | array const = enumerate(10000000); | | int perform() | { | int res; | foreach( const, int i ) | res=1; | return sizeof(const); | } | | |
|