All pastes #2049869 Raw Edit

Something

public text v1 · immutable
#2049869 ·published 2011-04-23 19:46 UTC
rendered paste body
parse errors:
  new Foo()->bar();
  (new Foo())->bar();
valid:
  id(new Foo())->bar();
definition:
  function id($foo) { return $foo; }

parse error:
  foo()[$bar];
valid:
  fn_idx(foo(), $bar);
definition:
  function fn_idx($foo, $bar) { $foo[$bar]; }