1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 12:55:26 +01:00

Remove test file

This commit is contained in:
Matthew Brown 2018-02-20 09:04:30 -05:00
parent ec74b82587
commit 295207896b

View File

@ -1,15 +0,0 @@
<?php
namespace Matt;
interface I {}
class C
{
public function getI(): I
{
return new class implements I
{
};
}
}