--TEST--
Bug #60153 (Interface method prototypes not enforced when implementd via traits.)
--FILE--
<?php

interface IFoo {
    public function 
oneArgument($a);
}

trait 
TFoo {
  public function 
oneArgument() {}
}

class 
implements IFoo {
  use 
TFoo;
}

--
EXPECTF--
Fatal errorDeclaration of TFoo::oneArgument() must be compatible with IFoo::oneArgument($ain %s on line %d