summaryrefslogtreecommitdiff
path: root/tests/classes/constants_error_004.phpt
blob: 3f34473dad12c24a8bd5066669650f4ae7d30a03 (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