blob: b36dba8966135fb6518a8cbfe9d9afe2b3b03689 [file] [log] [blame]
class A {
void mixin() {}
void as() {}
}
extension type E1 on A show mixin, as {}
extension type E2 on A hide mixin, as {}
main() {}