summaryrefslogtreecommitdiff
path: root/tests/classes/constants_error_004.phpt
blob: adafc0614b57b66cc1fc13e5026e86a8d20a1007 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
Class constant whose initial value references a non-existent class
--FILE--
<?php
  class C
  {
      const c1 = D::hello;
  }

  $a = new C();
?>
--EXPECTF--
Fatal error: Class 'D' not found in %s on line %d