aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/php/overload_copy_runme.php
blob: 893a715c5c2f332c803233496a91018c39fd89d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
require "tests.php";

// No new functions
check::functions(array());
check::classes(array('Foo'));
// No new vars
check::globals(array());

$f = new Foo();
$g = new Foo($f);

check::done();