Files
ANSLibs/swig-4.3.0/Examples/test-suite/php/overload_copy_runme.php

14 lines
196 B
PHP
Raw Normal View History

<?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();