no-constructors.phpt 181 B

123456789101112
  1. --TEST--
  2. Enum disallows constructor
  3. --FILE--
  4. <?php
  5. enum Foo {
  6. public function __construct() {}
  7. }
  8. ?>
  9. --EXPECTF--
  10. Fatal error: Enum may not include __construct in %s on line %d