No error on use of `unsafe_cast`
[hiphop-php.git] / hphp / hack / test / typecheck / abstract_tconst_allowed_self.php
blob43a08955b4c89be620f491a2174ef21013d94784
1 <?hh
2 // Copyright 2004-present Facebook. All Rights Reserved.
4 interface ISiteVariable {
5 abstract const type TVal;
8 trait SiteVariable implements ISiteVariable {
9 private static ?self::TVal $data = null;