TypeScript/tests/cases/compiler/augmentedTypesClass2.ts
2014-07-12 17:30:19 -07:00

29 lines
407 B
TypeScript

// Checking class with other things in type space not value space
// class then interface
class c11 {
foo() {
return 1;
}
}
interface c11 { // error
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;
}
}