mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-09 20:51:43 -06:00
Add a better test for jsdoc index signatures.
The test case shows that the errorenous error no longer appears.
This commit is contained in:
parent
c13506e70c
commit
2473ffcaac
@ -8,3 +8,8 @@ var o1;
|
||||
var o2;
|
||||
/** @type {Object.<boolean, string>} */
|
||||
var o3;
|
||||
/** @param {Object.<string, boolean>} o */
|
||||
function f(o) {
|
||||
o.foo = 1; // error
|
||||
o.bar = false; // ok
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user