mirror of
https://github.com/danog/Valinor.git
synced 2024-11-30 04:39:05 +01:00
7a49f45175
This is mostly to include type inference in regression tests: out-of-the box type inference for 99% of usages is based on `TreeMapper#map(class-string<T>, mixed): T`, and it is worth preserving that behavior without the need of plugins. This test covers that.
10 lines
102 B
PHP
10 lines
102 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace CuyZ\Valinor\Tests\StaticAnalysis\Stub;
|
|
|
|
final class A
|
|
{
|
|
}
|