TypeScript/tests/cases/compiler/assignToObjectTypeWithPrototypeProperty.ts
2014-07-12 17:30:19 -07:00

3 lines
88 B
TypeScript

class XEvent {}
var p: XEvent = XEvent.prototype;
var x: {prototype: XEvent} = XEvent;