11 lines
119 B

import C from './C';
export default class D {
constructor () {
this.isD = true;
}
c () {
return new C();
}
}