blob: f2aaa72725904b5742649bbfc81bcc159014ac07 [file] [log] [blame]
class Super {}
class Class extends Super {
method() {}
static staticMethod() {}
}
mixin Mixin on Super {
method() {}
static staticMethod() {}
}