xref: /php-src/Zend/tests/gh10232/constant_def.inc (revision f8b9030b)
1<?php
2
3trigger_error(basename(__FILE__));
4$ex = new Exception();
5echo 'Exception in ', basename($ex->getFile()), ' on line ', $ex->getLine(), "\n";
6
7require_once 'required.inc'; // The script of the same directory.
8
9class ConstantDef
10{
11    const VALUE = true;
12}
13