blob: 34bd7f2fd0835239433cca4f5fc2914b5c57f0a1 [file] [log] [blame]
# Copyright (c) 2022, 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.
sources: |
// @dart=2.9
class D<T> {
Y id<Y>(Y x) => x;
m(List<T> l) {
assert(l is List<T>);
}
}
definitions: ["s"]
position: "#D"
expression: |
m(id(s = []))