~ubuntu-branches/ubuntu/hardy/php5/hardy-updates

« back to all changes in this revision

Viewing changes to tests/classes/visibility_004c.phpt

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-10-09 03:14:32 UTC
  • Revision ID: james.westby@ubuntu.com-20051009031432-kspik3lobxstafv9
Tags: upstream-5.0.5
ImportĀ upstreamĀ versionĀ 5.0.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--TEST--
 
2
ZE2 A redeclared method must have the same or higher visibility
 
3
--SKIPIF--
 
4
<?php if (version_compare(zend_version(), '2.0.0-dev', '<')) die('skip ZendEngine 2 needed'); ?>
 
5
--FILE--
 
6
<?php
 
7
 
 
8
class father {
 
9
        function f0() {}
 
10
        function f1() {}
 
11
        public function f2() {}
 
12
        protected function f3() {}
 
13
        private function f4() {}
 
14
}
 
15
 
 
16
class same extends father {
 
17
 
 
18
        // overload fn with same visibility
 
19
        function f0() {}
 
20
        public function f1() {}
 
21
        public function f2() {}
 
22
        protected function f3() {}
 
23
        private function f4() {}
 
24
}
 
25
 
 
26
class fail extends same {
 
27
        function f4() {}
 
28
}
 
29
 
 
30
echo "Done\n";
 
31
?>
 
32
--EXPECTF--
 
33
Done