TypeScript/tests/cases/compiler/augmentedTypesClass2.ts
Mohamed Hegazy 8b8d33d8b8 Fix comments
2015-10-16 16:29:11 -07:00

30 lines
398 B
TypeScript

// Checking class with other things in type space not value space
// class then interface
class c11 {
foo() {
return 1;
}
}
interface c11 {
bar(): void;
}
// class then class - covered
// class then enum
class c33 {
foo() {
return 1;
}
}
enum c33 { One };
// class then import
class c44 {
foo() {
return 1;
}
}