Closed
Description
TypeScript Version: 2.7.0-dev.20171025
Code
interface Abc {
abc: number
}
interface Xyz {
xyz: number
}
declare function foo(x: Abc);
declare function foo(x: Xyz);
foo({
|
})
Trigger completions at |
Expected behavior:
Suggestions for both abc
and xyz
are returned since either version of overload could apply
Actual behavior:
Only a completion for abc
is returned.
// cc @octref