TypeScript/tests/baselines/reference/exportAssignmentWithoutIdentifier1.errors.txt

11 lines
273 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/exportAssignmentWithoutIdentifier1.ts (1 errors) ====
function Greeter() {
//...
}
Greeter.prototype.greet = function () {
//...
}
export = new Greeter();
~~~
!!! Identifier expected.