TypeScript/tests/baselines/reference/abstractInterfaceIdentifierName.js

9 lines
136 B
TypeScript
Raw Normal View History

2015-06-20 00:45:18 +02:00
//// [abstractInterfaceIdentifierName.ts]
2015-04-30 18:35:57 +02:00
interface abstract {
abstract(): void;
}
2015-06-20 00:45:18 +02:00
//// [abstractInterfaceIdentifierName.js]