<?php

header('Content-Type: text/plain;');

$test = '$test is true'."\n";

class IncludingObject
{
	public static function includeFile()
	{
		include 'include-in-object2.php';
		echo $test;
	}
}

IncludingObject::includeFile();

echo $test;

?>
