TypeScript/tests/baselines/reference/abstractInterfaceIdentifierName.types
2015-06-19 15:45:18 -07:00

10 lines
165 B
Plaintext

=== tests/cases/compiler/abstractInterfaceIdentifierName.ts ===
interface abstract {
>abstract : abstract
abstract(): void;
>abstract : () => void
}