TypeScript/tests/baselines/reference/exportAssignmentWithoutIdentifier1.errors.txt
2014-07-12 17:30:19 -07:00

11 lines
273 B
Plaintext

==== tests/cases/compiler/exportAssignmentWithoutIdentifier1.ts (1 errors) ====
function Greeter() {
//...
}
Greeter.prototype.greet = function () {
//...
}
export = new Greeter();
~~~
!!! Identifier expected.