mirror of
https://github.com/php/php-src.git
synced 2026-03-26 09:12:14 +01:00
5 lines
68 B
PHP
5 lines
68 B
PHP
<?php
|
|
interface I {}
|
|
class B implements I {}
|
|
class_alias('B', 'C');
|