Add tests for not virtualized functions
[hiphop-php.git] / hphp / hack / test / typecheck / expression_trees_not_virtualize_functions / public_property_access.php
blob8a06e7d670e0444b6f3e2e0a9046324db5a774e7
1 <?hh
3 <<file:__EnableUnstableFeatures('expression_trees')>>
5 abstract class MyClass {
6 public ExampleInt $prop;
9 function test(): void {
10 ExampleDsl`(MyClass $x) ==> {
11 $x->prop;
12 }`;