Error on self::class on non final classes
[hiphop-php.git] / hphp / hack / test / typecheck / typing_fail_cast.php
blob3cbcb8c5229474f51e469c1753919dcc5f6ba2c3
1 <?hh // strict
2 /**
3 * Copyright (c) 2014, Facebook, Inc.
4 * All rights reserved.
6 * This source code is licensed under the MIT license found in the
7 * LICENSE file in the "hack" directory of this source tree.
12 class B {
13 public function g(): int { return 0;
17 class A<T> extends Exception implements B {
18 public function f(): void {
22 function test1(mixed $x): A<bool> {
23 if($x is A<_>) {
24 return (A<bool>)$x;
26 throw new A();