mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-20 22:51:17 -05:00
Fix bug: symbol.valueDeclaration not guaranteed to be defined (#26267)
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
class C extends (class {} as new () => Readonly<{ attrib: number }>) {
|
||||
constructor() {
|
||||
super()
|
||||
this.attrib = 2
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user