blob: e48bd356cb6bf7c5dc09f939c49a632234e56ca9 [file] [log] [blame]
enum Foo {
a,
b,
c,
d,
e,
}
extension FooExtension on Foo {
int get giveInt => 42;
}
// The below doesn't have to be included.
extension BarExtension on Bar {
int get giveInt => 42;
}
class Bar {}