1--TEST-- 2Scalar type names cannot be used as class, trait or interface names (7) 3--FILE-- 4<?php 5namespace foo; 6 7class int {} 8--EXPECTF-- 9Fatal error: Cannot use 'int' as class name as it is reserved in %s on line %d 10