1--TEST--
2Test that the ReturnTypeWillChange attribute cannot target functions
3--FILE--
4<?php
5
6#[ReturnTypeWillChange]
7function foo() {}
8
9?>
10--EXPECTF--
11Fatal error: Attribute "ReturnTypeWillChange" cannot target function (allowed targets: method) in %s on line %d
12