mirror of
https://github.com/php/php-src.git
synced 2026-04-05 07:02:33 +02:00
5 lines
68 B
PHP
5 lines
68 B
PHP
<?php
|
|
interface I {}
|
|
class B implements I {}
|
|
class_alias('B', 'C');
|