PageRenderTime 41ms CodeModel.GetById 17ms RepoModel.GetById 1ms app.codeStats 0ms

/hphp/test/slow/array_functions/527.php

http://github.com/facebook/hiphop-php
PHP | 10 lines | 6 code | 3 blank | 1 comment | 0 complexity | d0c3c331c0a163b11f933efbccd75ccc MD5 | raw file
Possible License(s): LGPL-2.1, BSD-2-Clause, BSD-3-Clause, MPL-2.0-no-copyleft-exception, MIT, LGPL-2.0, Apache-2.0
  1. <?hh
  2. // disable array -> "Array" conversion notice
  3. <<__EntryPoint>>
  4. function main_527() {
  5. error_reporting(error_reporting() & ~E_NOTICE);
  6. var_dump(array_unique(varray[varray[1,2], varray[1,2], varray[3,4],]));
  7. }