blob: 8dc7a503cc4ec8fbb15ea55d54dd7d7dffac910b [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.
sources:
main.dart: |
class Bound {}
void hasBound<T extends Bound>() {}
class C<T extends Bound> {}
class A<T> {}
main() {}
main_2.dart: |
import 'main.dart' as m;
main() {
m.main();
}
entry_point: "main_2.dart"
position: "main.dart#A"
expression: |
hasBound<T>()