0
0
mirror of https://github.com/php/php-src.git synced 2024-12-20 15:30:38 +08:00
php-src/Zend/tests/bug69754.phpt

26 lines
458 B
Plaintext
Raw Normal View History

--TEST--
Bug #69754 (Use of ::class inside array causes compile error)
--FILE--
<?php
class Example {
2020-02-04 05:52:20 +08:00
public function test() {
var_dump(static::class);
var_dump(static::class . 'IsAwesome');
var_dump(static::class . date('Ymd'));
var_dump([static::class]);
}
}
(new Example)->test();
?>
--EXPECTF--
string(7) "Example"
string(16) "ExampleIsAwesome"
string(15) "Example%d"
array(1) {
[0]=>
string(7) "Example"
}