TypeScript/tests/baselines/reference/crashOnMethodSignatures.errors.txt
2014-09-12 13:35:07 -07:00

10 lines
401 B
Plaintext

tests/cases/compiler/crashOnMethodSignatures.ts(2,5): error TS2391: Function implementation is missing or not immediately following the declaration.
==== tests/cases/compiler/crashOnMethodSignatures.ts (1 errors) ====
class A {
a(completed: () => any): void;
~
!!! error TS2391: Function implementation is missing or not immediately following the declaration.
}