// test: static property accessible from instance variable via :: access
// feature: completion
// Adapted from phpactor WorseClassMemberCompletorTest 'Static property with previous arrow accessor'
// expect: $foo
---
<?php
class Foobar
{
public static $foo;
/**
* @var Foobar
*/
public $me;
}
$foobar = new Foobar();
$foobar->me::<>