1--TEST--
2"Reference Unpacking - Compile Error (const)" list()
3--FILE--
4<?php
5const FOO = 10;
6[&$f] = FOO;
7?>
8--EXPECTF--
9Fatal error: Cannot assign reference to non referencable value in %s on line %d
10