xref: /PHP-7.1/Zend/tests/bug74188.phpt (revision 744c4a55)
1--TEST--
2Fixes bug 74188 (undeclared static variables emit a warning with ?? operator)
3--FILE--
4<?php
5abstract class Test
6{
7	public static function get()
8	{
9		static::$a ?? true;
10	}
11}
12Test::get();
13?>
14--EXPECT--
15