diff --git a/tests/aot/const-test.phpt b/tests/aot/const-test.phpt index 6272f143..6aef3b4b 100644 --- a/tests/aot/const-test.phpt +++ b/tests/aot/const-test.phpt @@ -8,11 +8,9 @@ const C_S = "str"; const C_B = true; const C_N = null; const C_A = [1,2,3]; -const C_O = new stdClass(); const C_I2 = -C_I; const C_F2 = C_F * 2; -const C_S2 = C_S . "hello"; function main() { var_dump(C_I); @@ -21,10 +19,8 @@ function main() { var_dump(C_B); var_dump(C_N); var_dump(C_A); - var_dump(C_O); var_dump(C_I2); var_dump(C_F2); - var_dump(C_S2); } ?> @@ -42,9 +38,6 @@ array(3) { [2]=> int(3) } -object(stdClass)#%d (0) { -} int(-11) float(2.2) -string(8) "strhello"