1--TEST--
2Scalar type - disallow relative types
3--FILE--
4<?php
5
6function foo(bar\int $a): int {
7	return $a;
8}
9
10foo(10);
11
12?>
13--EXPECTF--
14Fatal error: Cannot use 'bar\int' as class name as it is reserved in %s on line %d
15