blob: 1d9497d208efc6facf826966b0308890ab00c309 [file] [log] [blame]
/*
* Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
* for details. All rights reserved. Use of this source code is governed by a
* BSD-style license that can be found in the LICENSE file.
*/
// SharedOptions=--enable-experiment=extension-methods
library extension_conflict_resolution_lib;
extension MyFancyList<T> on List<T> {
bool get isLibraryVersion => true;
}
extension MyNumList<T extends num> on List<T> {
bool get isNumLibraryVersion => true;
}
extension MyIntList<T extends int> on List<T> {
bool get isIntLibraryVersion => true;
}