blob: 9a990890b21842c6e40e136167a90e697513d523 [file] [log] [blame]
extension Foo on String {
int get giveInt => 42;
}
// The below doesn't have to be included.
extension BarExtension on Bar {
int get giveInt => 42;
}
class Bar {}