summaryrefslogtreecommitdiff
path: root/ext/ffi/tests/029.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/ffi/tests/029.phpt')
-rw-r--r--ext/ffi/tests/029.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/ffi/tests/029.phpt b/ext/ffi/tests/029.phpt
index bda59788fb..0951809306 100644
--- a/ext/ffi/tests/029.phpt
+++ b/ext/ffi/tests/029.phpt
@@ -7,8 +7,8 @@ ffi.enable=1
--FILE--
<?php
$ffi = FFI::cdef("
- typedef char t1;
- typedef char _Alignas(int) t2;
+ typedef char t1;
+ typedef char _Alignas(int) t2;
");
var_dump(FFI::sizeof($ffi->new("struct {char a; t1 b;}")));
var_dump(FFI::sizeof($ffi->new("struct {char a; t2 b;}")));