diff options
author | Antony Dovgal <tony2001@php.net> | 2007-02-07 11:10:32 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2007-02-07 11:10:32 +0000 |
commit | 0f0fe9c96714776cec451792249854ff675c5b36 (patch) | |
tree | c991f5e35f5d01185a952e4c726bec1c126ee023 /Zend/tests/errmsg_009.phpt | |
parent | 3f8e222ab36a12c9e3bd2ed3fff1db482d616bff (diff) | |
download | php-git-0f0fe9c96714776cec451792249854ff675c5b36.tar.gz |
MFH: new tests
Diffstat (limited to 'Zend/tests/errmsg_009.phpt')
-rw-r--r-- | Zend/tests/errmsg_009.phpt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Zend/tests/errmsg_009.phpt b/Zend/tests/errmsg_009.phpt new file mode 100644 index 0000000000..4834fa3e7a --- /dev/null +++ b/Zend/tests/errmsg_009.phpt @@ -0,0 +1,13 @@ +--TEST-- +errmsg: multiple access type modifiers are not allowed (properties) +--FILE-- +<?php + +class test { + public private $var; +} + +echo "Done\n"; +?> +--EXPECTF-- +Fatal error: Multiple access type modifiers are not allowed in %s on line %d |