test: Reduce amount of code generated for test20855 again

This commit is contained in:
Iain Buclaw 2021-08-17 14:37:16 +02:00 committed by The Dlang Bot
parent f0eedb426f
commit 4da47aee22

View file

@ -3,7 +3,7 @@
string exp()
{
string s = "a = b + c * d + a;";
foreach (i; 0 .. 10)
foreach (i; 0 .. 9)
s = s ~ s;
return s;
}
@ -21,6 +21,6 @@ int main()
{
int a = test();
printf("a = %d\n", a);
assert(test() == 14337);
assert(test() == 7169);
return 0;
}