/**
  * @group foobar
  */
 public function testInstanceOf5()
 {
     $this->setUpInheritance(array('Foo' => 'BarInterface'));
     $blind = $this->newScope();
     $this->doTestBinop($blind, 'Instanceof', $this->createVar($blind, 'x', 'object<BarInterface>'), $this->createClass($this->registry->getClass('Foo')), array('x' => 'object<Foo>'), array('x' => 'object<BarInterface>'));
 }