1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-26 20:34:47 +01:00

Remove failing test

This commit is contained in:
Matthew Brown 2018-12-20 01:16:11 -05:00
parent c3a1e77a53
commit b15bf8afef

View File

@ -158,30 +158,6 @@ class TypeAnnotationTest extends TestCase
return $r;
}',
],
'namespacedType' => [
'<?php
namespace Foo {
class A {
/**
* @psalm-type self::TBaz = A|\Bar\B
*/
public function foo() : void {}
}
}
namespace Bar {
class B {
/**
* @param \Foo\A::TBaz $a
*/
public function tender($a) : void {
$a->foo();
}
public function foo() : void {}
}
}'
],
];
}