TypeScript/tests/baselines/reference/functionDeclarationWithResolutionOfTypeOfSameName01.types

14 lines
198 B
Plaintext

=== tests/cases/compiler/functionDeclarationWithResolutionOfTypeOfSameName01.ts ===
interface f {
>f : f
}
function f() {
>f : () => void
<f>f;
><f>f : f
>f : f
>f : () => void
}