diff options
| author | Robin Fernandes <robinf@php.net> | 2008-01-30 14:25:57 +0000 |
|---|---|---|
| committer | Robin Fernandes <robinf@php.net> | 2008-01-30 14:25:57 +0000 |
| commit | 7eb114a9cf19e585be1a0075f5b1275a40d68e91 (patch) | |
| tree | f6ca9f65deb757efca4406c18041569f3cce2710 /tests/classes/constants_error_005.phpt | |
| parent | b9df996a3b372a869a9e30cb02d45ac63e031450 (diff) | |
| download | php-git-7eb114a9cf19e585be1a0075f5b1275a40d68e91.tar.gz | |
Adding tests for class features, including __autoload(), property inheritance rules and class constants.
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 0000000000..1283783de7 --- /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 |
