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