Skip to content

Commit ac152ed

Browse files
Accepted baselines for the only test that was expected to pass.
1 parent 456eedf commit ac152ed

File tree

3 files changed

+37
-0
lines changed

3 files changed

+37
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
//// [functionDeclarationWithResolutionOfTypeOfSameName01.ts]
2+
interface f {
3+
}
4+
5+
function f() {
6+
<f>f;
7+
}
8+
9+
//// [functionDeclarationWithResolutionOfTypeOfSameName01.js]
10+
function f() {
11+
f;
12+
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
=== tests/cases/compiler/functionDeclarationWithResolutionOfTypeOfSameName01.ts ===
2+
interface f {
3+
>f : Symbol(f, Decl(functionDeclarationWithResolutionOfTypeOfSameName01.ts, 0, 0), Decl(functionDeclarationWithResolutionOfTypeOfSameName01.ts, 1, 1))
4+
}
5+
6+
function f() {
7+
>f : Symbol(f, Decl(functionDeclarationWithResolutionOfTypeOfSameName01.ts, 0, 0), Decl(functionDeclarationWithResolutionOfTypeOfSameName01.ts, 1, 1))
8+
9+
<f>f;
10+
>f : Symbol(f, Decl(functionDeclarationWithResolutionOfTypeOfSameName01.ts, 0, 0), Decl(functionDeclarationWithResolutionOfTypeOfSameName01.ts, 1, 1))
11+
>f : Symbol(f, Decl(functionDeclarationWithResolutionOfTypeOfSameName01.ts, 0, 0), Decl(functionDeclarationWithResolutionOfTypeOfSameName01.ts, 1, 1))
12+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
=== tests/cases/compiler/functionDeclarationWithResolutionOfTypeOfSameName01.ts ===
2+
interface f {
3+
>f : f
4+
}
5+
6+
function f() {
7+
>f : () => void
8+
9+
<f>f;
10+
><f>f : f
11+
>f : f
12+
>f : () => void
13+
}

0 commit comments

Comments
 (0)