diff options
Diffstat (limited to 'tests/classes/constants_error_005.phpt')
-rw-r--r-- | tests/classes/constants_error_005.phpt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/classes/constants_error_005.phpt b/tests/classes/constants_error_005.phpt new file mode 100644 index 0000000..1283783 --- /dev/null +++ b/tests/classes/constants_error_005.phpt @@ -0,0 +1,12 @@ +--TEST-- +Error case: class constant as an encapsed containing a variable +--FILE-- +<?php + class myclass + { + const myConst = "$myVar"; + } +?> +--EXPECTF-- + +Parse error: %s in %s on line %d |