mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-11-18 17:21:48 +00:00
Added test for leading underscore property name suggestions.
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
// @module: commonjs
|
||||
// @filename abc.ts
|
||||
export declare let a: {
|
||||
__foo: 10,
|
||||
}
|
||||
|
||||
a.___foo
|
||||
|
||||
// @filename def.ts
|
||||
export let b: {
|
||||
__foo: number
|
||||
}
|
||||
|
||||
b = {
|
||||
__foo: 100,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user