blob: 55bf0e3a5a401c9da90da4e8b7249a03a2d50d53 [file] [log] [blame]
// @dart = 2.9
oracle<T>([T t]) => true;
testIfElement(dynamic dynVar, List<int> listInt, List<double> listDouble, Map<String, int> mapToInt, Map<String, double> mapToDouble) {}
testIfElementErrors(Map<int, int> map) {}
testForElement(dynamic dynVar, List<int> listInt, List<double> listDouble, int index, Map<String, int> mapStringInt, Map<String, double> mapStringDouble) {}
testForElementErrors(Map<int, int> map, List<int> list) async {}
testForElementErrorsNotAsync(Stream<int> stream) {}
class A {}
class B extends A {
int get foo => 42;
}
testPromotion(A a) {}
main() {}