1--TEST-- 2Traits cannot be readonly 3--FILE-- 4<?php 5 6readonly trait Foo 7{ 8} 9 10?> 11--EXPECTF-- 12Parse error: syntax error, unexpected token "trait", expecting "abstract" or "final" or "readonly" or "class" in %s on line %d 13