<?php

interface A {
    public function a(): void;
}

enum B implements A {}

?>