Error on self::class on non final classes
[hiphop-php.git] / hphp / hack / test / typecheck / typedef_bad_error_message.php
blob42e678d737420fadd779756f2c248ce85cba5ebc
1 <?hh // strict
3 type Blah<T> = Vector<T>;
5 function f(): Blah<int> {
6 return Vector { 'hi' };