mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-10 03:01:01 +00:00
12 lines
153 B
PHP
12 lines
153 B
PHP
<?php
|
|
class Point
|
|
{
|
|
public $x;
|
|
public $y;
|
|
}
|
|
|
|
// PHP Fatal error: Cannot declare class Point, because the name is already in use
|
|
class Point
|
|
{
|
|
}
|