diff --git a/tests/baselines/reference/typeGuardIntersectionTypes.js b/tests/baselines/reference/typeGuardIntersectionTypes.js index 6c46b982024..6de7d06e323 100644 --- a/tests/baselines/reference/typeGuardIntersectionTypes.js +++ b/tests/baselines/reference/typeGuardIntersectionTypes.js @@ -50,7 +50,7 @@ function union(a: A): A & B | null { } } -// Repro from #9011 +// Repro from #9016 declare function log(s: string): void; diff --git a/tests/baselines/reference/typeGuardIntersectionTypes.symbols b/tests/baselines/reference/typeGuardIntersectionTypes.symbols index 707fb95b339..ea8e903c765 100644 --- a/tests/baselines/reference/typeGuardIntersectionTypes.symbols +++ b/tests/baselines/reference/typeGuardIntersectionTypes.symbols @@ -117,7 +117,7 @@ function union(a: A): A & B | null { } } -// Repro from #9011 +// Repro from #9016 declare function log(s: string): void; >log : Symbol(log, Decl(typeGuardIntersectionTypes.ts, 49, 1)) diff --git a/tests/baselines/reference/typeGuardIntersectionTypes.types b/tests/baselines/reference/typeGuardIntersectionTypes.types index 5ce768d4a5e..8be50453572 100644 --- a/tests/baselines/reference/typeGuardIntersectionTypes.types +++ b/tests/baselines/reference/typeGuardIntersectionTypes.types @@ -133,7 +133,7 @@ function union(a: A): A & B | null { } } -// Repro from #9011 +// Repro from #9016 declare function log(s: string): void; >log : (s: string) => void diff --git a/tests/cases/conformance/expressions/typeGuards/typeGuardIntersectionTypes.ts b/tests/cases/conformance/expressions/typeGuards/typeGuardIntersectionTypes.ts index d0a999acd1c..85c003787fd 100644 --- a/tests/cases/conformance/expressions/typeGuards/typeGuardIntersectionTypes.ts +++ b/tests/cases/conformance/expressions/typeGuards/typeGuardIntersectionTypes.ts @@ -50,7 +50,7 @@ function union(a: A): A & B | null { } } -// Repro from #9011 +// Repro from #9016 declare function log(s: string): void;