1--TEST-- 2063: Old-style constructors in namespaces (not supported!) 3--FILE-- 4<?php 5namespace Foo; 6class Bar { 7 function Bar() { 8 echo "ok\n"; 9 } 10} 11new Bar(); 12echo "ok\n"; 13?> 14--EXPECT-- 15ok 16