1--TEST--
2FiberError cannot be constructed in user code
3--FILE--
4<?php
5
6try {
7    new FiberError;
8} catch (Error $exception) {
9    echo $exception->getMessage(), "\n";
10}
11
12?>
13--EXPECT--
14The "FiberError" class is reserved for internal use and cannot be manually instantiated
15