1--TEST--
2Indirect call with constants.
3--FILE--
4<?php
5
6class Test
7{
8    public static function method()
9    {
10        echo "Method called!\n";
11    }
12}
13
14['Test', 'method']();
15
16'Test::method'();
17
18(['Test', 'method'])();
19
20('Test::method')();
21
22?>
23--EXPECT--
24Method called!
25Method called!
26Method called!
27Method called!
28