No error on use of `unsafe_cast`
[hiphop-php.git] / hphp / hack / test / typecheck / multiple_concrete_defs_from_traits.php
blob0e025fa3c54a9ed19206c271970b1fb8204893ac
1 <?hh // strict
2 // Copyright 2004-present Facebook. All Rights Reserved.
4 trait T1 {
5 public static num $p = 5.4;
8 trait T2 {
9 public static num $p = 5.0;
12 trait T3 {
13 public static num $p = 4;
16 class C {
17 use T1, T2, T3;