blob: 14c9a1486b619151ad5217a3963b0d5e0d658d1c [file] [log] [blame]
library two_exports.src.extending;
import 'base.dart';
int topLevelVariable = 1;
bool? someConflictingNameSymbol;
/// Extending class extends [BaseClass].
///
/// Also check out [topLevelVariable].
///
/// Linking over to [Apple] should work.
class ExtendingClass extends BaseClass {}
class ExtendingAgain extends BaseWithMembers {
@override
bool? anotherField;
}