Add EntryPoints to some tests (round 30)
[hiphop-php.git] / hphp / test / zend / good / Zend / tests / traits / bugs / abstract-methods01.php
blob64ff91a6c3d6404d532dc30a70b1cf18fb695d70
1 <?php
3 trait THello {
4 public abstract function hello();
7 class TraitsTest {
8 use THello;
11 <<__EntryPoint>> function main() {
12 error_reporting(E_ALL);
13 $test = new TraitsTest();
14 $test->hello();